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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Age Banner */
.age-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    color: white;
    z-index: 1000;
    padding: 10px 0;
    font-weight: bold;
    text-align: center;
    animation: slideDown 0.5s ease-out;
}

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

.age-text {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.age-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.age-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

.brand {
    color: #fbbf24;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 28px;
    color: #f7931e;
}

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

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
    background: rgba(255, 187, 36, 0.1);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('https://ext.same-assets.com/893621492/1013185096.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    z-index: 1;
}

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

.main-heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(255, 187, 36, 0.5);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

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

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

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

.crypto-symbol {
    font-size: 48px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 187, 36, 0.5));
}

.crypto-symbol.btc {
    animation-delay: 0s;
    color: #f7931e;
}

.crypto-symbol.eth {
    animation-delay: 1s;
    color: #627eea;
}

.crypto-symbol.diamond {
    animation-delay: 2s;
    color: #a78bfa;
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(22, 33, 62, 0.8);
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border: 1px solid rgba(255, 187, 36, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 187, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #fbbf24;
    box-shadow: 0 20px 40px rgba(255, 187, 36, 0.2);
}

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

.feature-title {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-description {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Game Preview Section */
.game-preview-section {
    padding: 100px 0;
    text-align: center;
}

.game-preview-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fbbf24;
    margin-bottom: 30px;
    font-weight: 800;
}

.game-preview-section p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.game-preview {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border: 2px solid #fbbf24;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 50px auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.slot-preview {
    position: relative;
    z-index: 2;
}

.preview-text {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.crypto-icons span {
    font-size: 36px;
    padding: 15px;
    background: rgba(255, 187, 36, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 187, 36, 0.3);
    animation: pulse 2s infinite;
}

.crypto-icons span:nth-child(1) { animation-delay: 0.0s; }
.crypto-icons span:nth-child(2) { animation-delay: 0.2s; }
.crypto-icons span:nth-child(3) { animation-delay: 0.4s; }
.crypto-icons span:nth-child(4) { animation-delay: 0.6s; }
.crypto-icons span:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 187, 36, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 187, 36, 0.6);
    }
}

.play-button {
    display: inline-block;
    background: linear-gradient(135deg, #f7931e, #fbbf24);
    color: #1a1a2e;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
    margin-top: 30px;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.5);
    background: linear-gradient(135deg, #fbbf24, #f7931e);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(15, 52, 96, 0.8);
}

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

.about-content h2 {
    color: #fbbf24;
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-content h3 {
    color: #f7931e;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.about-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-visual {
    text-align: center;
}

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

.crypto-coin {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    border: 3px solid;
    animation: spin 10s linear infinite;
}

.crypto-coin.btc {
    background: linear-gradient(145deg, #f7931e, #fbbf24);
    border-color: #f7931e;
    color: #1a1a2e;
}

.crypto-coin.eth {
    background: linear-gradient(145deg, #627eea, #8b5cf6);
    border-color: #627eea;
    color: white;
}

.crypto-coin.diamond {
    background: linear-gradient(145deg, #a78bfa, #ec4899);
    border-color: #a78bfa;
    color: white;
}

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

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 187, 36, 0.3);
}

.footer-links {
    text-align: center;
    margin-bottom: 40px;
}

.footer-links a {
    color: #fbbf24;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 187, 36, 0.2);
}

.footer-copyright {
    color: #e0e0e0;
}

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

.age-badge,
.safe-badge {
    background: linear-gradient(135deg, #f7931e, #fbbf24);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Game Page Styles */
.game-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
}

.game-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 20px;
    z-index: 10001;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-back-btn {
    background: linear-gradient(135deg, #f7931e, #fbbf24);
    color: #1a1a2e;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.game-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
}

.game-title {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 700;
}

.game-frame {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    border: none;
    background: #000;
}

/* Policy Pages */
.policy-page {
    padding: 150px 0 100px;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 187, 36, 0.3);
}

.policy-content h1 {
    color: #fbbf24;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.policy-content h2 {
    color: #f7931e;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.policy-content h3 {
    color: #fbbf24;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.policy-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul {
    color: #e0e0e0;
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 10px 0;
        font-size: 18px;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .crypto-symbols {
        gap: 20px;
    }

    .crypto-symbol {
        font-size: 36px;
    }

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

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

    .crypto-icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .crypto-icons span {
        font-size: 28px;
        padding: 10px;
    }

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

    .policy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .policy-content h1 {
        font-size: 2.5rem;
    }

    .age-content {
        flex-direction: column;
        gap: 10px;
    }

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

@media (max-width: 480px) {
    .policy-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .crypto-icons span {
        font-size: 24px;
        padding: 8px;
    }

    .play-button {
        padding: 15px 30px;
        font-size: 18px;
    }
}
