* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Starfield background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat;
}

.stars {
    background-image: radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 90px 120px, #fff, transparent),
        radial-gradient(1px 1px at 160px 60px, #fff, transparent);
    background-size: 200px 200px;
    opacity: 0.5;
}

.stars2 {
    background-image: radial-gradient(1px 1px at 50px 90px, #facc15, transparent),
        radial-gradient(1px 1px at 140px 40px, #facc15, transparent);
    background-size: 300px 300px;
    opacity: 0.3;
}

.stars3 {
    background-image: radial-gradient(2px 2px at 100px 150px, #eab308, transparent);
    background-size: 400px 400px;
    opacity: 0.2;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    background: linear-gradient(135deg, #facc15, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #facc15;
}

/* Hero */
.hero {
    position: relative;
    z-index: 5;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fde047, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    color: #facc15;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.6);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-container {
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.5);
}

.cta-button.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.disclosure {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Sections */
.section {
    position: relative;
    z-index: 5;
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section.alt {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #f1f5f9;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 12px;
    padding: 1.75rem;
}

.card.highlight {
    border-color: rgba(250, 204, 21, 0.5);
    background: rgba(250, 204, 21, 0.08);
    text-align: center;
}

.card h3 {
    color: #facc15;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.responsible-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.au-note {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Footer */
.footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem 1.5rem;
    color: #64748b;
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Games carousel */
.games-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1100px;
}

.game-tile {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(235, 179, 8, 0.08));
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #fde047;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.game-tile img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.game-tile p {
    margin: 0;
    color: #fde047;
}

.game-tile:hover {
    border-color: rgba(250, 204, 21, 0.7);
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(235, 179, 8, 0.15));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.25);
}

/* Promotion cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.promo-card {
    background: linear-gradient(160deg, rgba(250, 204, 21, 0.08), rgba(235, 179, 8, 0.05));
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    border-color: rgba(250, 204, 21, 0.6);
    background: linear-gradient(160deg, rgba(250, 204, 21, 0.15), rgba(235, 179, 8, 0.1));
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.2);
}

.promo-header {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(235, 179, 8, 0.1));
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
    padding: 1.5rem;
    position: relative;
}

.promo-header h3 {
    color: #fde047;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.promo-badge {
    display: inline-block;
    background: rgba(250, 204, 21, 0.2);
    color: #facc15;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fde047;
    font-family: 'Orbitron', sans-serif;
}

.promo-details {
    flex-grow: 1;
}

.promo-details p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.promo-details strong {
    color: #f1f5f9;
}

.promo-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(250, 204, 21, 0.08);
    border-radius: 8px;
}

.value-score {
    font-size: 1rem;
    color: #facc15;
}

.value-text {
    color: #facc15;
    font-weight: 600;
    font-size: 0.85rem;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
    margin-top: auto;
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

/* Popup banner */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
}

.popup-overlay.show {
    display: flex;
}

.popup-banner {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(160deg, #1a1a1a, #000000);
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popIn 0.35s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.popup-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.popup-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    color: #f1f5f9;
    margin-bottom: 0.6rem;
}

.popup-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }
}
