/* ===== CSS Reset & Variables ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #DAA520;
    --gold-light: #E6B84D;
    --gold-dark: #B8860B;
    --black: #000000;
    --dark: #0A0A0A;
    --dark-surface: #111111;
    --gray: #1A1A1A;
    --gray-light: #2A2A2A;
    --text: #FAFAFA;
    --text-muted: #A0A0A0;
    --border: #333333;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-gold: 0 4px 30px rgba(218, 165, 32, 0.3);
    --shadow-gold-lg: 0 10px 50px rgba(218, 165, 32, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-cta {
    background: var(--gold);
    color: var(--black);
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: var(--shadow-gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(218, 165, 32, 0.3); }
    50% { box-shadow: 0 0 40px rgba(218, 165, 32, 0.6); }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.header-gold-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    width: 200px;
    height: 20px;
    padding: 0px;
}

.logo-icon {
    width: 400px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-desktop a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--gold);
}

.header-buttons {
    display: none;
    gap: 12px;
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.mobile-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.mobile-buttons .btn {
    flex: 1;
}

/* Desktop styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-buttons {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .logo-title {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
}

.cards-left, .cards-right {
    position: absolute;
    bottom: 0;
    width: 300px;
    height: 400px;
    opacity: 0.5;
    display: none;
}

.cards-left {
    left: -50px;
}

.cards-right {
    right: -50px;
}

.card-svg {
    width: 100%;
    height: 100%;
}

@media (min-width: 1024px) {
    .cards-left, .cards-right {
        display: block;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Hero bottom cards */
.hero-cards-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
}

.card-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 30px;
}

.mini-card {
    width: 60px;
    height: 90px;
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.cards-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, var(--black) 0%, var(--black) 30%, transparent 100%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .mini-card {
        width: 80px;
        height: 120px;
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 14px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(218, 165, 32, 0.5);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Games Section ===== */
.games {
    padding: 80px 0;
    background: var(--dark);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.game-card {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: rgba(218, 165, 32, 0.5);
    transform: translateY(-4px);
}

.game-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}

.game-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.game-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
}

.game-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Promotions Section ===== */
.promotions {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
    position: relative;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(218, 165, 32, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.promotions::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(218, 165, 32, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.promo-card:hover {
    transform: scale(1.02);
}

.promo-card.highlight {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(218, 165, 32, 0.05) 100%);
    border-color: rgba(218, 165, 32, 0.5);
    box-shadow: var(--shadow-gold);
}

.promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 16px 0 12px;
}

.promo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.promo-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
}

.promo-amount {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.promo-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 20px 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-info {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.footer-gold-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(218, 165, 32, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(218, 165, 32, 0.7);
}

/* ===== Selection ===== */
::selection {
    background: rgba(218, 165, 32, 0.3);
    color: var(--text);
}
