<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Bitcoin Price Update</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@600&family=Playfair+Display:ital,wght@1,700&display=swap');

        body {
            background-color: #121212;
            color: #e0e0e0;
            font-family: 'Roboto', sans-serif;
            margin: 30px auto;
            max-width: 650px;
            line-height: 1.6;
        }
        h1 {
            font-family: 'Playfair Display', serif;
            color: #f7931a;
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-align: center;
        }
        p.subtitle {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: #bbbbbb;
            text-align: center;
            margin-top: 0;
            margin-bottom: 25px;
        }
        .price {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 2.4rem;
            color: #4caf50;
            text-align: center;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 20px 15px;
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
        }
        .stat-item {
            flex: 1;
            text-align: center;
            margin: 0 10px;
        }
        .stat-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: #999999;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .stat-item p {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin: 0;
        }
        .negative {
            color: #e53935;
        }
        .chart-placeholder {
            margin-top: 35px;
            background-color: #222;
            height: 260px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-style: italic;
            font-family: 'Roboto', sans-serif;
            font-size: 1.1rem;
            box-shadow: inset 0 0 10px #000;
        }
        .summary {
            margin-top: 30px;
            font-size: 1.1rem;
            color: #cccccc;
            font-family: 'Roboto', sans-serif;
            text-align: justify;
        }
        .highlight {
            color: #f7931a;
            font-weight: 700;
        }
    </style>
</head>
<body>
    <h1>Bitcoin (BTC) Price Update</h1>
    <p class="subtitle">Trading Pair: <span class="highlight">BTC / USDT (Bitcoin)</span></p>
    <p class="price">Current Price: <span>$78,505.10 USDT</span></p>

    <div class="stats">
        <div class="stat-item">
            <h3>24H Change</h3>
            <p class="negative">-0.06%</p>
        </div>
        <div class="stat-item">
            <h3>24H High</h3>
            <p>$78,623.37</p>
        </div>
        <div class="stat-item">
            <h3>24H Low</h3>
            <p>$77,752.00</p>
        </div>
        <div class="stat-item">
            <h3>24H Volume</h3>
            <p>8,185 BTC</p>
        </div>
    </div>

    <div class="chart-placeholder">
        [Bitcoin Price Chart: 1 Hour Interval]
    </div>

    <p class="summary">
        Over the past 24 hours, Bitcoin has experienced a slight decline of <span class="negative">0.06%</span>. The highest price recorded was <span class="highlight">$78,623.37</span>, while the lowest dipped to <span class="highlight">$77,752.00</span>. Despite the minor price drop, trading volume remains robust with <span class="highlight">8,185 BTC</span> exchanged, indicating sustained market interest and activity.
    </p>
</body>
</html>

Posted using SteemX