/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Age Banner */
.age-banner {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a2e;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-weight: 600;
    border-bottom: 2px solid #b45309;
}

.age-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-text {
    font-size: 16px;
    text-align: center;
}

.age-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #1a1a2e;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.age-close:hover {
    background-color: rgba(26, 26, 46, 0.1);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.brand {
    color: #f59e0b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.brand-icon {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a2e;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #f59e0b;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: url('https://ext.same-assets.com/893621492/1460131101.jpeg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 35, 0.7);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.main-heading {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.main-subheading {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 40px;
    line-height: 1.4;
    color: #e5e5e5;
}

.main-subheading em {
    color: #f59e0b;
    font-style: italic;
}

.crypto-symbols {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.crypto-symbol {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.crypto-symbol.lightning { animation-delay: 0s; }
.crypto-symbol.btc { animation-delay: 0.6s; }
.crypto-symbol.eth { animation-delay: 1.2s; }
.crypto-symbol.diamond { animation-delay: 1.8s; }
.crypto-symbol.chain { animation-delay: 2.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.feature-number {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-icon {
    font-size: 3rem;
    margin: 20px 0;
    display: block;
}

.feature-description {
    color: #c7c7c7;
    line-height: 1.6;
}

/* Game Preview Section */
.game-preview-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.game-preview-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-preview-section p {
    font-size: 1.2rem;
    color: #c7c7c7;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.game-preview {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 50px auto;
    max-width: 600px;
    border: 3px solid #b45309;
}

.slot-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preview-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.crypto-icons {
    display: flex;
    gap: 20px;
    font-size: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.play-button {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a2e;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    border-color: #fbbf24;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #f59e0b;
    margin: 40px 0 15px 0;
    font-weight: 700;
}

.about-content p {
    color: #c7c7c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.crypto-coin {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a2e;
    border: 3px solid #b45309;
    animation: rotate 10s linear infinite;
}

.crypto-coin:nth-child(2) { animation-delay: 2s; }
.crypto-coin:nth-child(3) { animation-delay: 4s; }
.crypto-coin:nth-child(4) { animation-delay: 6s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: #0f0f23;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(245, 158, 11, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-disclaimer {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding-top: 30px;
}

.footer-copyright p {
    color: #c7c7c7;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.age-badge,
.safe-badge {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px;
        margin: 5px 0;
    }

    .brand {
        font-size: 16px;
    }

    .brand-icon {
        font-size: 20px;
    }

    .age-text {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crypto-stack {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .crypto-coin {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .crypto-symbols {
        gap: 20px;
    }

    .crypto-symbol {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .game-preview {
        padding: 40px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Hidden class for age banner */
.hidden {
    display: none !important;
}
