* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --card-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gold-light: #e8c547;
    --green: #00d946;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========== PARTICLE BACKGROUND ========== */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(30px);
    }
}

/* ========== HEADER ========== */
.header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    padding: 40px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section {
    text-align: center;
}

.tagline-top {
    font-size: 0.95em;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.4em;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-primary);
}

.badge-icon {
    font-size: 1.3em;
}

.scroll-indicator {
    margin-top: 80px;
    color: var(--text-secondary);
}

.scroll-arrow {
    font-size: 1.5em;
    animation: bounce 2s infinite;
    margin-top: 10px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

/* ========== RAFFLE SECTION ========== */
.raffle-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tier-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.tier-featured {
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(232, 197, 71, 0.3);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85em;
}

.tier-header {
    text-align: center;
    margin-bottom: 20px;
}

.tier-trophy {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tier-label {
    background: var(--gold);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    font-size: 0.9em;
}

.grand-prize {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.prize-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 800;
    color: var(--gold);
}

.prize-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 5px;
}

.prize-breakdown {
    margin-bottom: 25px;
}

.prize-breakdown h4 {
    color: var(--gold);
    font-size: 0.85em;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.prize-value {
    color: var(--gold);
    font-weight: 600;
}

.spots-info {
    margin-bottom: 20px;
}

.spots-label {
    font-size: 0.85em;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spots-count {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.spots-filled {
    color: var(--gold);
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.entry-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.fee-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: var(--gold);
    font-weight: 700;
}

/* ========== INVITE BONUS SECTION ========== */
.invite-bonus-section {
    background: rgba(0, 217, 70, 0.08);
    border: 2px solid rgba(0, 217, 70, 0.3);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-header {
    color: var(--green);
    font-weight: 700;
    font-size: 0.95em;
    text-align: center;
}

.invite-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
}

.counter-num {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--green);
    font-family: 'Playfair Display', serif;
}

.counter-text {
    font-size: 0.9em;
    color: var(--text-secondary);
}

.invite-tracker {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tracker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 217, 70, 0.2);
    border: 2px solid rgba(0, 217, 70, 0.4);
    transition: all 0.3s ease;
}

.tracker-dot.active {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 10px rgba(0, 217, 70, 0.6);
}

.btn-invite {
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(0, 217, 70, 0.8), var(--green));
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.btn-invite:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 70, 0.4);
}

.btn-claim {
    padding: 12px 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    animation: pulse 1s ease-in-out infinite;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.btn-enter {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: auto;
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========== BONUS SUMMARY SECTION ========== */
.bonus-summary-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 217, 70, 0.1));
    border: 2px solid var(--gold);
    border-radius: 20px;
}

/* ========== WINNERS SECTION ========== */
.winners-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 217, 70, 0.05));
    border: 3px solid var(--gold);
    border-radius: 20px;
    text-align: center;
}

.winners-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 50px 40px;
    border: 2px solid var(--gold);
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.winner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.placeholder-text {
    font-size: 1.3em;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.announcement-date {
    font-size: 1.1em;
    color: var(--text-secondary);
    font-style: italic;
}

.announcement-highlight {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2em;
}

.bonus-summary-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-stat {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.stat-label {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: var(--gold);
    font-weight: 800;
}

.claimed-bonuses-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.claimed-bonuses-list h3 {
    color: var(--gold);
    margin-bottom: 15px;
    text-align: center;
}

.bonus-claim-item {
    background: rgba(0, 217, 70, 0.1);
    border-left: 4px solid var(--green);
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-claim-info {
    flex: 1;
}

.bonus-claim-tier {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95em;
}

.bonus-claim-amount {
    color: var(--green);
    font-weight: 700;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(42, 42, 42, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--gold);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95em;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 176, 176, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.entry-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--gold);
}

.qty-btn {
    background: var(--gold);
    border: none;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

#entries {
    background: transparent;
    border: none;
    color: var(--gold);
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
    width: 50px;
}

.total-cost {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.total-cost span {
    color: var(--gold);
    font-weight: 700;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========== SUCCESS MODAL ========== */
.modal-success {
    text-align: center;
    max-width: 400px;
}

.success-icon {
    font-size: 4em;
    color: var(--green);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.modal-success h2 {
    color: var(--green);
    margin-bottom: 15px;
}

.btn-close {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 15px;
}

.btn-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    border-top: 2px solid var(--gold);
    margin-top: 80px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.95em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .logo {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .hero-badges {
        gap: 15px;
    }

    .section-title {
        font-size: 2em;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tier-featured {
        transform: scale(1);
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }

    .bonus-summary-card {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .tier-card {
        padding: 20px 15px;
    }

    .modal-content {
        padding: 20px;
    }

    .bonus-stat {
        padding: 20px;
    }

    .stat-value {
        font-size: 1.8em;
    }
}

/* ========== PENDING & ADMIN STYLES ========== */
.modal-pending {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
}

.pending-icon {
    font-size: 3em;
    margin-bottom: 15px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.pending-details {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 0.95em;
}

.pending-details p {
    margin: 8px 0;
    line-height: 1.5;
}

.admin-modal .modal-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
}

.admin-content {
    max-width: 900px !important;
}

.admin-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
}

.admin-content h3 {
    color: var(--gold-light);
    margin: 20px 0 15px 0;
    font-size: 1.2em;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
}

.admin-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-light);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.admin-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.admin-item-info {
    flex: 1;
}

.admin-item-info p {
    margin: 8px 0;
    line-height: 1.4;
}

.btn-approve,
.btn-reject {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9em;
}

.btn-approve {
    background: var(--green);
    color: #000;
}

.btn-approve:hover {
    background: #00ff4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 70, 0.4);
}

.btn-reject {
    background: #ff4444;
    color: #fff;
}

.btn-reject:hover {
    background: #ff6666;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* ========== AUTHENTICATION STYLES ========== */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-auth {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.auth-modal {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--gold);
    max-width: 400px;
}

.auth-modal h2 {
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
}

.auth-modal .form-group {
    margin-bottom: 15px;
}

.auth-modal input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1em;
}

.auth-modal input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.user-dashboard-modal {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--gold);
    max-width: 500px;
}

.user-dashboard-modal h2 {
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dashboard-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.dashboard-section h3 {
    color: var(--gold-light);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.referral-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
}

.referral-input-group {
    display: flex;
    gap: 10px;
}

.referral-input-group input {
    flex: 1;
}

.btn-copy {
    padding: 10px 15px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--gold);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-bottom: 8px;
}

.stat-value {
    color: var(--gold);
    font-size: 1.5em;
    font-weight: bold;
}

.btn-logout {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablet & Small Desktop (1024px and below) */
@media (max-width: 1024px) {
    .header {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.8em;
    }

    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tier-card {
        padding: 25px 15px;
    }

    .tier-featured {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .container {
        padding: 20px 15px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .auth-buttons {
        width: 100%;
    }

    .btn-auth {
        width: 100%;
    }

    .logo {
        font-size: 1.5em;
    }

    .tagline-top {
        font-size: 0.9em;
    }

    .hero-subtitle {
        font-size: 1em !important;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.5em;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tier-featured {
        grid-column: 1;
        max-width: 100%;
        transform: scale(1) !important;
    }

    .tier-card {
        padding: 20px 15px;
    }

    .modal-content {
        width: 90%;
        max-height: 85vh;
        padding: 25px 15px;
    }

    .auth-modal {
        max-width: 95%;
    }

    .user-dashboard-modal {
        max-width: 95%;
    }

    .bonus-summary-card {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .bonus-stat {
        padding: 15px 10px;
    }

    .stat-value {
        font-size: 1.3em;
    }

    .referral-input-group {
        flex-direction: column;
    }

    .btn-copy {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    :root {
        font-size: 12px;
    }

    body {
        overflow-x: hidden;
    }

    .header {
        padding: 10px 0;
    }

    .header-content {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.2em;
    }

    .tagline-top {
        font-size: 0.75em;
    }

    .container {
        padding: 10px;
    }

    .hero-section {
        padding: 20px 10px;
        min-height: auto;
    }

    .hero-content {
        gap: 15px;
    }

    .hero-subtitle {
        font-size: 0.9em !important;
        line-height: 1.3;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .badge {
        padding: 10px;
        font-size: 0.8em;
    }

    .section-title {
        font-size: 1.2em;
    }

    .section-subtitle {
        font-size: 0.85em;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tier-card {
        padding: 15px 10px;
        border-radius: 12px;
    }

    .grand-prize {
        padding: 10px 0;
    }

    .prize-amount {
        font-size: 1.3em;
    }

    .prize-label {
        font-size: 0.8em;
    }

    .prize-breakdown h4 {
        font-size: 0.85em;
    }

    .prize-item {
        font-size: 0.8em;
        padding: 6px 0;
    }

    .btn-enter,
    .btn-invite,
    .btn-claim {
        padding: 10px 12px;
        font-size: 0.85em;
    }

    .entry-fee {
        gap: 5px;
        font-size: 0.85em;
    }

    .fee-amount {
        font-size: 0.95em;
    }

    .invite-bonus-section {
        padding: 12px;
    }

    .bonus-header {
        font-size: 0.9em;
    }

    .invite-counter {
        gap: 5px;
        font-size: 0.85em;
    }

    .counter-num {
        font-size: 1.2em;
    }

    .invite-tracker {
        gap: 6px;
    }

    .tracker-dot {
        width: 8px;
        height: 8px;
    }

    .modal-content {
        width: 95%;
        padding: 20px 12px;
        border-radius: 12px;
    }

    .modal-close {
        width: 24px;
        height: 24px;
        font-size: 1.2em;
    }

    .modal-content h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.85em;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1em;
        padding: 10px;
    }

    .btn-submit {
        padding: 10px;
        font-size: 0.9em;
    }

    .auth-modal {
        max-width: 95%;
    }

    .user-dashboard-modal {
        max-width: 95%;
    }

    .dashboard-container {
        gap: 15px;
    }

    .dashboard-section {
        padding: 12px;
    }

    .dashboard-section h3 {
        font-size: 0.95em;
    }

    .referral-input-group {
        flex-direction: column;
        gap: 8px;
    }

    .referral-input-group input {
        font-size: 0.8em;
        padding: 8px;
    }

    .btn-copy {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-box {
        padding: 10px;
    }

    .stat-label {
        font-size: 0.8em;
    }

    .stat-value {
        font-size: 1.3em;
    }

    .btn-logout {
        padding: 10px;
        font-size: 0.9em;
    }

    .bonus-summary-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bonus-stat {
        padding: 12px 10px;
    }

    .stat-value {
        font-size: 1.2em;
    }

    .tier-bonus-total {
        font-size: 0.85em !important;
    }

    .spots-info {
        font-size: 0.8em;
    }

    .spots-label {
        font-size: 0.75em;
    }

    .spots-count {
        font-size: 0.9em;
    }

    .entry-selector {
        gap: 5px;
    }

    .qty-btn {
        padding: 6px 10px;
        font-size: 0.9em;
    }

    .total-cost {
        font-size: 0.8em;
        margin-top: 8px;
    }

    .admin-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .admin-item-info {
        width: 100%;
    }

    .btn-approve,
    .btn-reject {
        width: 48%;
        padding: 6px 10px;
        font-size: 0.75em;
    }

    .modal-pending {
        padding: 20px;
    }

    .pending-icon {
        font-size: 2.5em;
    }

    .pending-details {
        font-size: 0.85em;
    }
}
