:root {
    --primary-color: #6c5ce7;
    --primary-light: #a29bfe;
    --primary-dark: #4834d4;
    --secondary-color: #00cec9;
    --secondary-light: #81ecec;
    --accent-color: #fd79a8;
    --accent-light: #fdcb6e;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: #12122a;
    --card-border: #2d2d5a;
    --text-primary: #ffffff;
    --text-secondary: #b2b2d8;
    --text-muted: #6c6c9c;
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #00cec9 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    --gradient-card: linear-gradient(145deg, #12122a 0%, #1a1a3a 100%);
    --glow-primary: 0 0 40px rgba(108, 92, 231, 0.4);
    --glow-secondary: 0 0 40px rgba(0, 206, 201, 0.4);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.navbar-main {
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.98) 0%, rgba(10, 10, 26, 0.95) 100%);
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
    position: relative;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--text-primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary-light);
}

.nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1060;
}

.mobile-nav-close svg {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mobile-nav-close:hover svg {
    color: var(--primary-light);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links li a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-links li a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 206, 201, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(253, 121, 168, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.6;
}

.particle:nth-child(1) { top: 10%; left: 10%; width: 8px; height: 8px; background: var(--secondary-color); }
.particle:nth-child(2) { top: 20%; left: 80%; width: 4px; height: 4px; background: var(--accent-color); }
.particle:nth-child(3) { top: 60%; left: 15%; width: 6px; height: 6px; background: var(--primary-light); }
.particle:nth-child(4) { top: 70%; left: 70%; width: 10px; height: 10px; background: var(--secondary-light); }
.particle:nth-child(5) { top: 40%; left: 90%; width: 5px; height: 5px; background: var(--accent-light); }
.particle:nth-child(6) { top: 85%; left: 50%; width: 7px; height: 7px; background: var(--primary-color); }
.particle:nth-child(7) { top: 30%; left: 30%; width: 4px; height: 4px; background: var(--secondary-color); }
.particle:nth-child(8) { top: 50%; left: 60%; width: 8px; height: 8px; background: var(--accent-color); }

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 30px;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.hero-badge-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-title span {
    display: block;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    font-size: 48px;
    font-weight: 600;
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.5);
}

.btn-outline-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 38px;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 400px;
    height: 500px;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.hero-card:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-card:nth-child(2) {
    top: 40px;
    left: 60px;
    transform: rotate(0deg);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-light);
}

.hero-card:nth-child(3) {
    top: 80px;
    left: 120px;
    transform: rotate(8deg);
    z-index: 3;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: var(--glow-primary);
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.hero-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-card-stats {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-chip {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.floating-chip:nth-child(1) {
    top: -20px;
    right: 50px;
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

.floating-chip:nth-child(2) {
    bottom: 50px;
    left: -30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00cec9 0%, #00b894 100%);
    box-shadow: var(--glow-secondary);
}

.floating-chip:nth-child(3) {
    top: 150px;
    right: -20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 2px;
}

.scroll-text {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

    .hero-title span {
        font-size: 36px;
    }

    .hero-card-stack {
        width: 350px;
        height: 450px;
    }

    .hero-card {
        width: 250px;
        height: 340px;
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-title span {
        font-size: 30px;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .hero-card-stack {
        width: 300px;
        height: 400px;
    }

    .hero-card {
        width: 220px;
        height: 300px;
        padding: 20px;
    }

    .hero-card:nth-child(2) {
        left: 40px;
    }

    .hero-card:nth-child(3) {
        left: 80px;
    }

    .hero-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hero-card-title {
        font-size: 16px;
    }

    .hero-card-desc {
        font-size: 12px;
    }

    .hero-stat-value {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .navbar-main .container {
        padding: 0 20px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0 80px;
    }

    .hero-badge {
        padding: 8px 18px;
    }

    .hero-badge-text {
        font-size: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title span {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-glow,
    .btn-outline-glow {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .hero-card-stack {
        width: 100%;
        max-width: 280px;
        height: 350px;
        margin: 0 auto;
    }

    .hero-card {
        width: 200px;
        height: 270px;
        padding: 18px;
    }

    .hero-card:nth-child(1) {
        transform: rotate(-5deg);
    }

    .hero-card:nth-child(2) {
        left: 30px;
        top: 30px;
    }

    .hero-card:nth-child(3) {
        left: 60px;
        top: 60px;
        transform: rotate(5deg);
    }

    .hero-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 14px;
    }

    .hero-card-title {
        font-size: 14px;
    }

    .hero-card-desc {
        font-size: 11px;
        display: none;
    }

    .hero-card-stats {
        gap: 15px;
    }

    .hero-stat-value {
        font-size: 16px;
    }

    .hero-stat-label {
        font-size: 9px;
    }

    .floating-chip {
        display: none;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .mobile-nav-links li a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-title span {
        font-size: 20px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-card-stack {
        max-width: 240px;
        height: 300px;
    }

    .hero-card {
        width: 180px;
        height: 240px;
        padding: 15px;
    }

    .hero-card:nth-child(2) {
        left: 25px;
        top: 25px;
    }

    .hero-card:nth-child(3) {
        left: 50px;
        top: 50px;
    }

    .hero-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .hero-card-title {
        font-size: 13px;
    }

    .hero-stat-value {
        font-size: 14px;
    }

    .hero-stat-label {
        font-size: 8px;
    }
}

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 206, 201, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.game-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--glow-primary);
}

.game-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--card-bg) 100%);
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-content {
    padding: 25px;
}

.game-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.game-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.5);
    color: var(--text-primary);
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.game-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.games-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.about-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
}

.about-content {
    padding-right: 50px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}

.about-stat-item {
    text-align: center;
}

.about-stat-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-features {
    display: grid;
    gap: 25px;
}

.about-feature-card {
    display: flex;
    gap: 20px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    border-color: var(--primary-light);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.about-feature-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-cta-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.contact-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(108, 92, 231, 0.15);
    top: -100px;
    left: -100px;
}

.contact-cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 206, 201, 0.12);
    bottom: -50px;
    right: -50px;
}

.contact-cta-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(253, 121, 168, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-cta-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-cta-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.contact-cta-info-item svg {
    color: var(--secondary-color);
}

.responsible-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d0d20 100%);
    position: relative;
}

.responsible-header {
    text-align: center;
    margin-bottom: 60px;
}

.responsible-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--glow-primary);
}

.responsible-icon svg {
    color: var(--text-primary);
}

.responsible-tips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.responsible-tip-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.responsible-tip-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.responsible-tip-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.responsible-tip-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.responsible-tip-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.responsible-footer {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.responsible-message h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.responsible-message p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.responsible-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.responsible-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.responsible-link:hover {
    color: var(--secondary-light);
}

.responsible-age {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 36px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsible-tips {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .games-section,
    .about-section,
    .contact-cta-section,
    .responsible-section {
        padding: 80px 0;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-stats {
        justify-content: center;
    }

    .responsible-footer {
        flex-direction: column;
        text-align: center;
    }

    .responsible-message p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .games-section,
    .about-section,
    .contact-cta-section,
    .responsible-section {
        padding: 60px 0;
    }

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

    .game-card-image {
        height: 180px;
    }

    .game-card-content {
        padding: 20px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .about-stat-value {
        font-size: 28px;
    }

    .about-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .about-feature-icon {
        margin: 0 auto;
    }

    .contact-cta-title {
        font-size: 28px;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .contact-cta-info {
        flex-direction: column;
        gap: 15px;
    }

    .responsible-tips {
        grid-template-columns: 1fr;
    }

    .responsible-footer {
        padding: 30px;
    }

    .responsible-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .about-stat-item {
        flex: 1 1 100%;
    }
}

.footer-section {
    background: var(--darker-bg);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
}

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.footer-age-badge {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-disclaimer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

.footer-badges a {
    display: block;
    transition: all 0.3s ease;
}

.footer-badges a:hover {
    transform: translateY(-3px);
}

.footer-badges img {
    height: 50px;
    width: auto;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.footer-badges a:hover img {
    filter: grayscale(0%);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
}

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

@media (max-width: 767px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px;
    }

    .footer-links {
        gap: 20px;
        padding: 25px 0;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-badges {
        padding: 30px 0;
        gap: 20px;
    }

    .footer-badges img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-verification-modal {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px;
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.age-verification-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--glow-primary);
}

.age-verification-icon span {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.age-restriction-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 40px rgba(231, 76, 60, 0.4);
}

.age-restriction-icon svg {
    color: var(--text-primary);
}

.age-verification-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.age-verification-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-btn-accept {
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
}

.age-btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.5);
}

.age-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-reject:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.age-restriction-info {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.age-restriction-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 25px;
    max-width: 380px;
    width: calc(100% - 40px);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-consent-content {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-consent-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-consent-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-consent-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--primary-light);
}

.cookie-consent-text a:hover {
    color: var(--secondary-color);
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn-accept {
    flex: 1;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .age-verification-modal {
        padding: 35px 25px;
    }

    .age-verification-icon,
    .age-restriction-icon {
        width: 80px;
        height: 80px;
    }

    .age-verification-icon span {
        font-size: 26px;
    }

    .age-restriction-icon svg {
        width: 48px;
        height: 48px;
    }

    .age-verification-title {
        font-size: 22px;
    }

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

    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        padding: 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }
}

.page-content {
    min-height: 100vh;
    background: var(--gradient-hero);
}

.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--darker-bg);
    border-bottom: 1px solid var(--card-border);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 50px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--card-border);
}

.content-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block a {
    color: var(--primary-light);
}

.content-block a:hover {
    color: var(--secondary-color);
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.content-list li strong {
    color: var(--text-primary);
}

.contact-email-block .contact-email {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px 30px;
    margin-top: 15px;
}

.contact-email svg {
    color: var(--primary-light);
}

.contact-email a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.contact-email a:hover {
    color: var(--secondary-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
    padding-right: 20px;
}

.faq-question svg {
    color: var(--primary-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.faq-contact h2 {
    border: none;
    padding-bottom: 0;
}

.faq-contact a {
    color: var(--secondary-color);
}

.games-page-section {
    background: var(--darker-bg);
}

.game-page-section {
    background: var(--darker-bg);
}

.game-iframe-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.game-iframe-container iframe {
    max-width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.game-disclaimer {
    display: flex;
    gap: 20px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
}

.game-disclaimer-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(253, 203, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-disclaimer-icon svg {
    color: var(--accent-light);
}

.game-disclaimer-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.game-disclaimer-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .page-header {
        padding: 60px 0 50px;
    }

    .page-title {
        font-size: 38px;
    }

    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 50px 0 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .content-section {
        padding: 50px 0;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .content-block p {
        font-size: 14px;
    }

    .content-list li {
        font-size: 14px;
    }

    .contact-email {
        flex-direction: column;
        text-align: center;
    }

    .contact-email a {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .game-iframe-container iframe {
        width: 100%;
        height: 400px;
    }

    .game-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .game-disclaimer-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 26px;
    }

    .game-iframe-container iframe {
        height: 300px;
    }
}
