<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Revel Trading Design</title>
    <style>
        body {
            background-color: #050112;
            color: #ffffff;
            font-family: 'Inter', -apple-system, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 40px 20px;
        }
        .container {
            max-width: 1100px;
            width: 100%;
            text-align: center;
        }
        /* Heading */
        header h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        /* White text */
        .white-text {
            color: #ffffff;
        }
        /* Revel color */
        header h1 span:last-child {
            color: #b18cff;
        }
        /* ✅ Text white */
        header p {
            color: #ffffff;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 20px;
        }
        .card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 35px;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(177, 140, 255, 0.4);
        }
        /* ✅ Headings white */
        .card h2 {
            font-size: 1.6rem;
            margin: 0 0 12px 0;
            color: #ffffff;
        }
        /* ✅ Paragraphs white */
        .card p {
            font-size: 0.95rem;
            color: #ffffff;
            margin: 0;
            line-height: 1.4;
        }
        .wide {
            grid-column: span 2;
            background: radial-gradient(circle at bottom right, rgba(148, 112, 255, 0.25), transparent 70%);
        }
        .glow-purple {
            background: radial-gradient(circle at center, rgba(148, 112, 255, 0.2), transparent 85%);
        }
        .glow-pink {
            background: radial-gradient(circle at center, rgba(255, 0, 255, 0.15), transparent 85%);
        }
        .visual-element {
            margin-top: 30px;
            display: flex;
            justify-content: center;
        }
        .shield-icon {
            width: 80px;
            height: 90px;
            background: rgba(148, 112, 255, 0.1);
            border: 2px solid #b18cff;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            box-shadow: 0 0 40px rgba(148, 112, 255, 0.5);
        }
        .bolt {
            font-size: 60px;
            color: #ff00ff;
            filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
        }
        .revel-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 2px solid #b18cff;
            background: radial-gradient(circle, rgba(148, 112, 255, 0.4), transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-style: italic;
            font-size: 14px;
            box-shadow: 0 0 30px rgba(148, 112, 255, 0.6);
            margin: 20px auto 0;
        }
        .platform-icons {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            margin-top: 20px;
        }
        .icon-sq {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #333;
        }
        @media (max-width: 900px) {
            .grid-container { grid-template-columns: 1fr; }
            .wide { grid-column: span 1; }
        }
    </style>
</head>
<body>
        <header>
            <h1>
                Why Traders Choose 
                Revel
            </h1>
            <p>We're Built On The Foundation Of Innovation, Transparency,<br>And Commitment To Our Traders.</p>
        </header>
            <!-- Box 1 -->
                <h2>Trade On Diverse Platforms</h2>
                <p>Trade On MT4, MT5, Or cTrader, Giving You <br>Flexibility And Choice</p>
            <!-- Box 2 -->
                <h2>Exceptional Support</h2>
            <!-- Box 3 -->
                <h2>Fastest Payout</h2>
                <p>Experience Quick And Seamless Payouts</p>
                    âš¡
            <!-- Box 4 -->
                <h2>Yours To Keep</h2>
                <p>Keep Up To 90% Of Your Earnings</p>
                    🪙 🪙 🪙
            <!-- Box 5 -->
                <h2>Plans Perfect For Everyone</h2>
                REVEL
</body>
</html>