:root {
            --primary: #EC4899;
            --primary-hover: #F472B6;
            --secondary: #A855F7;
            --accent: #FF6B9D;
            --bg-main: #0A0612;
            --bg-surface: #14101F;
            --bg-elevated: #221633;
            --bg-overlay: rgba(10, 6, 18, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B8A8C9;
            --text-tertiary: #80708C;
            --text-inverse: #1A0F2E;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #A855F7;
            --border-subtle: #2D1B3D;
            --border-default: #3D2D4D;
            --border-strong: #EC4899;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; }
        header .logo-area strong { font-size: 16px; font-weight: 600; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: background-color 0.2s, color 0.2s;
            box-shadow: none;
            text-shadow: none;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--primary); color: #FFFFFF; }
        header .btn:hover { opacity: 1; }
        header .btn-login:hover { background: var(--primary); color: #FFFFFF; }
        header .btn-register:hover { background: var(--primary-hover); }
        header .btn-register:active, header .btn-login:active { transform: none; filter: brightness(0.92); }

        main { padding: 0 0 80px 0; max-width: 1200px; margin: 0 auto; }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-elevated));
            text-align: center;
            padding: 30px 20px;
            margin: 20px 15px;
            border-radius: 15px;
            border: 2px solid var(--secondary);
        }
        .jackpot-title { color: var(--primary); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: bold;
            color: #fff;
            text-shadow: none;
        }

        .intro-card {
            background: var(--bg-surface);
            margin: 20px 15px;
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title {
            text-align: center;
            margin: 40px 0 20px;
            font-size: 24px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
            display: block;
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 12px; font-size: 14px; text-align: center; color: var(--text-primary); }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            margin-top: 30px;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

        .guidelines-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 0 15px;
            margin-bottom: 40px;
        }
        .guideline-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .guideline-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guideline-card p { color: var(--text-secondary); font-size: 14px; }

        .lottery-list {
            background: var(--bg-surface);
            margin: 20px 15px;
            border-radius: 15px;
            overflow: hidden;
        }
        .lottery-header { background: var(--secondary); padding: 15px; text-align: center; font-weight: bold; }
        .lottery-row {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr 1fr;
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
            text-align: center;
            align-items: center;
        }
        .lottery-row:nth-child(even) { background: var(--bg-elevated); }
        .win-amount { color: var(--primary); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 40px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-subtle);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 0 15px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: var(--primary); }
        .review-user span { font-weight: bold; }
        .review-stars { color: var(--primary); margin-bottom: 10px; font-size: 14px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-tertiary); display: block; }

        .faq-section { padding: 0 15px; margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            color: var(--primary);
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer { padding: 0 20px 15px; color: var(--text-secondary); font-size: 14px; }

        .security-section {
            background: var(--bg-surface);
            margin: 40px 15px;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-strong);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); }
        .security-icon-item i { font-size: 30px; color: var(--primary); margin-bottom: 10px; }
        .security-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-text a { color: var(--primary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 2px solid var(--primary);
            z-index: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 11px;
            gap: 5px;
            text-decoration: none;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-default);
            color: var(--text-secondary);
            font-size: 14px;
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            text-align: center;
        }
        footer .contact-row a { color: var(--primary); font-weight: 500; }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        footer .links-grid a { font-size: 13px; display: block; padding: 5px 0; }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright {
            text-align: center;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            font-size: 12px;
            color: var(--text-tertiary);
        }

        @media (max-width: 600px) {
            .payment-section { grid-template-columns: repeat(2, 1fr); }
            .lottery-row { grid-template-columns: 1fr 1fr; gap: 10px; }
            .lottery-row div:nth-child(1), .lottery-row div:nth-child(4) { display: none; }
            .links-grid { grid-template-columns: repeat(3, 1fr); }
        }