@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
    --secondary-gradient: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ef4444 100%);
    --accent-gradient: linear-gradient(135deg, #34d399 0%, #06b6d4 50%, #3b82f6 100%);
    --dark-gradient: linear-gradient(160deg, #0f0f23 0%, #1a0a2e 50%, #0d1f3c 100%);
    --neon-cyan: #00d4ff;
    --neon-violet: #7c3aed;
    --neon-rose: #f472b6;
    --neon-amber: #fbbf24;
    --neon-emerald: #34d399;
    --dark-bg: #0f0f23;
    --darker-bg: #080812;
    --card-bg: rgba(15, 15, 35, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-glow: rgba(0, 212, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.navbar-main {
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 12px 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link-custom {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 8px 18px !important;
    margin: 0 4px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}

.nav-link-custom:hover::before {
    opacity: 1;
}

.nav-link-custom:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.2);
}

.hamburger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn i {
    font-size: 20px;
    color: var(--neon-cyan);
    transition: color 0.3s ease;
}

.hamburger-btn.active i {
    color: var(--neon-rose);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-gradient);
    backdrop-filter: blur(25px);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 40px;
    margin: 8px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.25);
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(244, 114, 182, 0.2);
    border-color: var(--neon-rose);
    transform: rotate(90deg);
}

.mobile-nav-close i {
    font-size: 18px;
    color: var(--neon-rose);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gradient);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
}

.hero-glow-1 {
    top: -200px;
    left: -200px;
    background: rgba(0, 212, 255, 0.2);
}

.hero-glow-2 {
    bottom: -200px;
    right: -200px;
    background: rgba(124, 58, 237, 0.2);
}

.hero-glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(244, 114, 182, 0.1);
    width: 600px;
    height: 600px;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 40%, #7c3aed 70%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f0f23;
    background: linear-gradient(135deg, #00d4ff 0%, #34d399 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 212, 255, 0.4);
    color: #0f0f23;
}

.btn-hero-secondary {
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-cyan);
    background: transparent;
    border: 1px solid var(--neon-cyan);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: #fff;
    border-color: var(--neon-violet);
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.25);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 18px 25px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.12);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.2));
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 500;
}

.hero-floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.floating-card i {
    font-size: 26px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card-1 {
    top: 20%;
    left: 8%;
}

.floating-card-2 {
    top: 25%;
    right: 12%;
}

.floating-card-3 {
    bottom: 28%;
    left: 12%;
}

.floating-card-4 {
    bottom: 20%;
    right: 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.games-section {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.9) 0%, transparent 50%);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.btn-play {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    color: #fff;
}

.about-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 15px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
}

.feature-icon {
    font-size: 20px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 18px;
    color: var(--neon-cyan);
}

.about-feature span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-card {
    position: absolute;
    padding: 25px 35px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.about-card-1 {
    top: 0;
    left: 20%;
}

.about-card-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.about-card-3 {
    bottom: 0;
    left: 30%;
}

.card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.card-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

.why-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    padding: 30px 25px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.why-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.why-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-cta-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    color: #fff;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.cta-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
}

.cta-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.faq-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

.faq-icon {
    font-size: 20px;
    color: var(--neon-cyan);
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 50px 0 30px;
}

.footer-disclaimer {
    text-align: center;
    padding: 25px 30px;
    background: rgba(244, 114, 182, 0.05);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-images img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-images a:hover img {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    font-size: 12px;
    color: var(--text-secondary);
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none !important;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 22px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .floating-card {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-badge {
        display: block;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .about-card-1 {
        left: 5%;
    }
    
    .about-card-2 {
        right: 5%;
    }
    
    .about-card-3 {
        left: 20%;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 70px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 1.5px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 28px;
        font-size: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 14px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .games-section,
    .about-section,
    .why-section,
    .contact-cta-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-image {
        height: 200px;
    }
    
    .about-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .about-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .cta-wrapper {
        padding: 35px 25px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 260px;
        padding: 12px 25px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .game-name {
        font-size: 14px;
    }
    
    .btn-play {
        padding: 8px 25px;
        font-size: 11px;
    }
    
    .card-number {
        font-size: 26px;
    }
    
    .why-icon {
        font-size: 28px;
    }
    
    .why-title {
        font-size: 14px;
    }
    
    .why-description {
        font-size: 12px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .faq-question span:first-child {
        font-size: 13px;
    }
    
    .footer-disclaimer {
        padding: 20px;
    }
    
    .footer-disclaimer p {
        font-size: 11px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-images {
        gap: 15px;
    }
    
    .footer-images img {
        height: 35px;
    }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-verification-popup {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.age-icon {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.age-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.age-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.age-question {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-accept {
    padding: 14px 35px;
    background: var(--primary-gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-age-reject {
    padding: 14px 35px;
    background: transparent;
    color: var(--neon-rose);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--neon-rose);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-reject:hover {
    background: rgba(244, 114, 182, 0.1);
    transform: translateY(-3px);
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    max-width: 380px;
    width: calc(100% - 40px);
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cookie-icon {
    font-size: 22px;
    flex-shrink: 0;
    color: var(--neon-cyan);
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.cookie-text a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    flex: 1;
    padding: 10px 20px;
    background: var(--primary-gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.25);
}

.btn-cookie-decline {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .age-verification-popup {
        padding: 30px 20px;
    }
    
    .age-icon {
        font-size: 40px;
    }
    
    .age-title {
        font-size: 20px;
    }
    
    .age-text {
        font-size: 13px;
    }
    
    .age-question {
        font-size: 14px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .btn-age-accept,
    .btn-age-reject {
        width: 100%;
        padding: 12px 30px;
    }
    
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

.page-hero {
    padding: 120px 0 60px;
    background: var(--dark-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.page-content {
    padding: 60px 0 80px;
    background: var(--darker-bg);
}

.content-block {
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.content-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.help-list li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.help-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.contact-email-block {
    text-align: center;
    padding: 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.email-icon {
    font-size: 24px;
    color: var(--neon-cyan);
}

.contact-email a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--neon-violet);
}

.games-page-section {
    padding: 60px 0 80px;
    background: var(--darker-bg);
}

.games-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.games-intro p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.game-page-section {
    padding: 100px 0 80px;
    background: var(--darker-bg);
    min-height: 100vh;
}

.game-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-iframe-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.game-iframe-container iframe {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: #000;
}

.game-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 30px;
    background: rgba(244, 114, 182, 0.05);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 12px;
    text-align: center;
}

.game-disclaimer p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .page-title {
        font-size: 34px;
    }
    
    .game-page-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .page-content {
        padding: 50px 0 60px;
    }
    
    .content-block h2 {
        font-size: 18px;
    }
    
    .content-block p {
        font-size: 13px;
    }
    
    .help-list li {
        font-size: 13px;
    }
    
    .contact-email-block {
        padding: 30px 20px;
    }
    
    .contact-email a {
        font-size: 16px;
    }
    
    .game-page-section {
        padding: 80px 0 60px;
    }
    
    .game-page-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .game-iframe-container iframe {
        width: 100%;
        height: 400px;
    }
    
    .game-disclaimer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .contact-email {
        flex-direction: column;
        gap: 10px;
    }
    
    .game-page-title {
        font-size: 22px;
    }
    
    .game-iframe-container iframe {
        height: 300px;
    }
}
