

:root {
    
    --bg-dark: #030508;
    --bg-card: rgba(255, 255, 255, 0.02);
    
    
    --accent-blue: #3b82f6;      
    --accent-cyan: #30d5c2;      
    --accent-green: #007a33;     
    
    
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --text-error: #ff4b4b;
    
    
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: blur(12px);
    
    
    --glow-blue: 0 0 15px rgba(59, 130, 246, 0.5);
    --glow-cyan: 0 0 15px rgba(48, 213, 194, 0.5);
    
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace; 
}


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


html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; 
}


ul, ol {
    list-style: none;
}


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


button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    outline: none;
}


img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    user-select: none; 
}


input, select, textarea {
    font: inherit;
    outline: none;
}


textarea {
    resize: vertical;
}


::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}


input, textarea, button, select, a {
    -webkit-tap-highlight-color: transparent;
}

header {
    height: var(--nav-height);
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1% 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header a img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--text-main);
}

.header-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.header-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 213, 194, 0.4);
}

.header-play-btn img {
    height: 18px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: 0.3s;
}


@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-dark);
        transition: 0.4s ease-in-out;
        padding-top: 40px;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        justify-content: center;
        height: 100vh;
        margin-top: 800px;
    }

    .nav-list a {
        font-size: 20px;
    }

    .burger {
        display: flex;
        order: 2;
    }

    .header-play-btn {
        margin-left: auto;
        margin-right: 20px;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    
    .header-play-btn span {
        display: none;
    }
    
    .header-play-btn {
        padding: 10px;
        border-radius: 12px;
        margin-right: 15px;
    }
}

.hero {
    padding: 80px 5% 40px;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(48, 213, 194, 0.05) 0%, transparent 40%);
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}


.hero-left h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 60%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-left p {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-btn {
    display: flex;
    gap: 16px;
}

.hero-btn a {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn a:first-child {
    background: var(--accent-blue);
    color: #fff;
}

.hero-btn a:last-child {
    background: var(--card-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.hero-btn a:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}


.hero-right {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(48, 213, 194, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-right img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-right h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 22px;
}

.hero-right p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-play-btn {
    display: block;
    width: 100%;
    background: #fff;
    color: #000;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.hero-play-btn:hover {
    background: var(--accent-cyan);
    transform: scale(1.02);
}


@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left p {
        margin: 0 auto 32px;
    }
    
    .hero-btn {
        justify-content: center;
    }
    
    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        flex-direction: column;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
}

.about {
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}


.about-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.about-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.about-text a {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.about-text a:hover {
    border-bottom-color: var(--accent-cyan);
    letter-spacing: 0.5px;
}


.about-wrapper img {
    flex: 1;
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
    transition: transform 0.5s ease;
}

.about-wrapper img:hover {
    transform: scale(1.02) rotate(1deg);
}


@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column-reverse; 
        text-align: center;
        gap: 40px;
    }

    .about-text {
        padding: 30px 20px;
    }

    .about-wrapper img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 15px;
    }
    
    .about-text h2 {
        font-size: 26px;
    }
}

.why-choose-us {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 800;
}

.why-choose-us > p {
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
}

.why-choose-us-list li {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.why-choose-us-list li:hover {
    transform: translateY(-8px);
    border-color: rgba(48, 213, 194, 0.4);
    background: linear-gradient(180deg, rgba(48, 213, 194, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-choose-us-list li img {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.why-choose-us-text h3 {
    color: var(--text-main);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-choose-us-text p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .why-choose-us-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us-list {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us-list li {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 60px 15px;
    }
    
    .why-choose-us h2 {
        font-size: 26px;
    }
}

.gameplay {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03));
    border-radius: 12px;
}

.gameplay h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    margin-bottom: 12px;
}

.gameplay > p {
    color: var(--text-dim);
    margin-bottom: 40px;
}

.gameplay-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden; 
    padding: 20px 0 40px;
}

.swiper-wrapper {
    display: flex;
    gap: 20px;
}

.gameplay-item {
    min-width: 320px;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.gameplay-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.gameplay-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gameplay-item:hover img {
    transform: scale(1.05);
}

.gameplay-item-text {
    padding: 24px;
    text-align: left;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.gameplay-item-text h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.gameplay-item-text p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.5;
}


.swiper-pagination-bullet {
    background: var(--glass-border);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}


@media (max-width: 1024px) {
    .swiper-wrapper {
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .gameplay-item {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .gameplay-item {
        min-width: 85vw;
    }
}

.game-introduction {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.game-introduction-wrapper {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.game-introduction-wrapper img {
    flex: 1;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-introduction-text {
    flex: 1.2;
}

.game-introduction-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.game-introduction-text > p {
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.6;
}

.game-introduction-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.game-introduction-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}


.game-introduction-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--accent-cyan);
}

.game-introduction-list p {
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.game-introduction-text a {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-introduction-text a:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(48, 213, 194, 0.4);
    transform: translateY(-2px);
}


@media (max-width: 1024px) {
    .game-introduction-wrapper {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .game-introduction-list li {
        text-align: left;
    }

    .game-introduction-wrapper img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .game-introduction-wrapper {
        border-radius: 20px;
        padding: 20px;
    }
    
    .game-introduction-text h2 {
        font-size: 24px;
    }
}

.memory-game-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    perspective: 1000px;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.info-box span {
    color: var(--accent-cyan);
    font-weight: bold;
    font-family: monospace;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.memory-card {
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.memory-card.flipped {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}


.card-front {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    color: var(--accent-blue);
    font-size: 24px;
}


.card-back {
    background: var(--accent-blue);
    color: white;
    transform: rotateY(180deg);
    font-size: 32px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.win-screen {
    margin-top: 30px;
    padding: 20px;
    background: rgba(48, 213, 194, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
}

.win-screen.hidden { display: none; }

.game-btn {
    background: var(--accent-cyan);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

@media (max-width: 480px) {
    .memory-grid { grid-template-columns: repeat(3, 1fr); }
}

.system-requirements {
    padding: 100px 5%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
}

.system-requirements-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.system-requirements-left h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    margin-bottom: 12px;
    text-align: center;
}

.system-requirements-left > p {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 50px;
}


.system-requirements-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; 
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

.system-requirements-list li {
    background: var(--bg-dark);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.system-requirements-list li:hover {
    background: rgba(255, 255, 255, 0.02);
}

.system-requirements-list h4 {
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 700;
}

.system-requirements-list p {
    color: var(--text-main);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}


.system-requirements-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    margin-top: 20px;
    opacity: 0.7;
    filter: grayscale(0.5) contrast(1.2);
}


@media (max-width: 1024px) {
    .system-requirements-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .system-requirements-list {
        grid-template-columns: 1fr;
    }
    
    .system-requirements-list li {
        padding: 30px;
        border-bottom: 1px solid var(--glass-border);
    }

    .system-requirements-wrapper img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .system-requirements {
        padding: 60px 15px;
    }
    
    .system-requirements-list h4 {
        font-size: 11px;
    }
    
    .system-requirements-list p {
        font-size: 15px;
    }
}

.how-to-start-game {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-to-start-game h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    margin-bottom: 16px;
}

.how-to-start-game > p {
    color: var(--text-dim);
    margin-bottom: 50px;
}

.how-to-start-game-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

.how-to-start-game-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 28px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.how-to-start-game-list li:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}


.how-to-start-game-list li span:first-child {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.how-to-start-game-list h3 {
    color: var(--text-main);
    font-size: 22px;
    margin-bottom: 15px;
}

.how-to-start-game-list p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}


.how-to-start-arrow-right {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.how-to-start-arrow-right::after {
    content: '→';
    color: var(--accent-cyan);
    font-size: 20px;
}

.how-to-start-download-gane {
    background: var(--accent-cyan);
    color: #000;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(48, 213, 194, 0.3);
}

.how-to-start-download-gane:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(48, 213, 194, 0.5);
}


@media (max-width: 1024px) {
    .how-to-start-game-list {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .how-to-start-game-list li {
        text-align: center;
        align-items: center;
    }
    
    .how-to-start-arrow-right {
        display: none; 
    }
}

.game-help {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.game-help h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 12px;
}

.game-help > p {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 60px;
}


div.game-help {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0;
}

.game-help-left h3, .game-help-right h3 {
    color: var(--text-main);
    font-size: 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}


.game-help-left h3::before, .game-help-right h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent-cyan);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.game-help-left > p, .game-help-right > p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 30px;
}


.game-help-left-list, .game-help-right-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-help-left-list li, .game-help-right-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.game-help-left-list li:hover, .game-help-right-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(48, 213, 194, 0.3);
    transform: translateX(5px);
}

.game-help-left-list h5, .game-help-right-list h5 {
    color: var(--accent-cyan);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.game-help-left-list p, .game-help-right-list p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 1024px) {
    div.game-help {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .game-help {
        padding: 60px 15px;
    }
    
    .game-help-left-list li, .game-help-right-list li {
        padding: 20px;
    }

    .game-help-left-list li:hover, .game-help-right-list li:hover {
        transform: none; 
    }
}

.cta {
    padding: 100px 5%;
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1a1a2e 100%);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}


.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.cta-left h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.cta-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
}


.cta-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.cta-right:hover {
    transform: scale(1.03);
}

.cta-right img {
    margin: 0 auto;
    height: 60px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.cta-right h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .cta-left p {
        margin: 0 auto;
    }

    .cta-right {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 60px 15px;
    }

    .cta-wrapper {
        border-radius: 30px;
        padding: 40px 20px;
    }

    .cta-left h2 {
        font-size: 28px;
    }
}

footer {
    background: #030508;
    border-top: 1px solid var(--glass-border);
    padding: 80px 5% 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.6fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}


.footer-first img {
    height: 35px;
    margin-bottom: 24px;
}

.footer-first p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}


footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}


.footer-second-list, .footer-third-list {
    list-style: none;
    padding: 0;
}

.footer-second-list li, .footer-third-list li {
    margin-bottom: 12px;
}

.footer-second-list a, .footer-third-list a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-second-list a:hover, .footer-third-list a:hover {
    color: var(--accent-cyan);
}


.footer-fourth-email-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.footer-fourth-email-wrapper:focus-within {
    border-color: var(--accent-blue);
}

.footer-fourth-email-wrapper input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    flex-grow: 1;
    font-size: 14px;
    outline: none;
}

.footer-fourth-email-wrapper button {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-fourth-email-wrapper button:hover {
    background: var(--accent-cyan);
    color: #000;
}


.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}


@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-fourth-email-wrapper {
        max-width: 100%;
    }

    .footer-first, .footer-fourth {
        order: -1;
    }
}

.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.error-wrapper {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.error-wrapper h1 {
    font-size: clamp(80px, 15vw, 120px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(48, 213, 194, 0.3));
    letter-spacing: -5px;
}

.error-wrapper h2 {
    color: var(--text-main);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.error-wrapper p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.error-actions a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}


.error-actions a:last-child {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
}

.error-actions a:last-child:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}


@media (max-width: 600px) {
    .error-404 {
        padding: 40px 20px;
    }

    .error-wrapper {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions a {
        width: 100%;
        justify-content: center;
    }
}

.about-good {
    padding: 80px 5%;
    background: radial-gradient(circle at 100% 0%, rgba(48, 213, 194, 0.05) 0%, transparent 50%);
}

.about-good-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-good-text {
    flex: 1;
}

.about-good-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 800;
    position: relative;
}

.about-good-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-blue);
    margin-top: 10px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-blue);
}

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

.about-good-wrapper img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.about-good-wrapper img:hover {
    transform: translateY(-10px) scale(1.02);
}


@media (max-width: 1024px) {
    .about-good-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-good-text h2::after {
        margin: 10px auto 0;
    }

    .about-good-wrapper img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-good {
        padding: 60px 20px;
    }

    .about-good-text p {
        font-size: 15px;
    }
}

.game-top {
    padding: 80px 5%;
}

.game-top-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.game-top-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.game-top-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(48, 213, 194, 0.2);
}

.game-top-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px var(--accent-blue));
}

.game-top-item h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
}

.game-top-item > p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}


.game-top-item-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.game-top-item-list li {
    padding-left: 20px;
    border-left: 2px solid var(--glass-border);
    transition: border-color 0.3s ease;
}

.game-top-item-list li:hover {
    border-left-color: var(--accent-cyan);
}

.game-top-item-list h4 {
    color: var(--accent-cyan);
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.game-top-item-list p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.5;
}


@media (max-width: 1024px) {
    .game-top-wrapper {
        grid-template-columns: 1fr;
    }
    
    .game-top-item {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .game-top {
        padding: 60px 15px;
    }

    .game-top-item h3 {
        font-size: 22px;
    }
}

.why-we {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.why-we h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 800;
}

.why-we > p {
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-we-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.why-we-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px 24px;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-we-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-we-list li img {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 8px rgba(48, 213, 194, 0.4));
}

.why-we-list h3 {
    color: var(--text-main);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-we-list p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .why-we-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-we-list {
        grid-template-columns: 1fr;
    }
    
    .why-we-list li {
        padding: 30px 20px;
    }
    
    .why-we {
        padding: 60px 20px;
    }
}

.go-play-with-us {
    padding: 80px 1%;
    max-width: 1200px;
    margin: 0 auto;
}

.go-play-with-us h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 16px;
}

.go-play-with-us > p {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 60px;
}

.go-play-with-us-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.go-play-with-us-list li {
    display: flex;
    align-items: center;
    gap: 60px;
}


.go-play-with-us-list img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(59, 130, 246, 0.1);
    object-fit: cover;
}

.go-play-with-us-text {
    flex: 1;
}

.go-play-with-us-text h3 {
    color: var(--accent-cyan);
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.go-play-with-us-text p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}


.go-play-with-us-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
}


@media (max-width: 1024px) {
    .go-play-with-us-list {
        gap: 60px;
    }
    
    .go-play-with-us-list li {
        flex-direction: column-reverse !important; 
        text-align: center;
        gap: 30px;
    }

    .go-play-with-us-list li:nth-child(2) {
        flex-direction: column !important;
    }

    .go-play-with-us-text p {
        padding-left: 0;
    }
    
    .go-play-with-us-text p::before {
        display: none;
    }

    .go-play-with-us-list img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .go-play-with-us {
        padding: 60px 20px;
    }
    
    .go-play-with-us-text h3 {
        font-size: 24px;
    }
}

.game-rules {
    padding: 100px 5%;
    background: radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
}

.game-rules h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 800;
}

.game-rules > p {
    color: var(--text-dim);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.game-rules-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.game-rules-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

.game-rules-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}


.game-rules-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.game-rules-list li:hover {
    transform: translateY(-10px);
    border-color: rgba(48, 213, 194, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.game-rules-list li:hover .game-rules-top-line {
    opacity: 1;
    height: 4px;
    box-shadow: 0 0 15px var(--accent-cyan);
}

.game-rules-list h3 {
    color: var(--text-main);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.game-rules-list p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .game-rules-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-rules-list {
        grid-template-columns: 1fr;
    }
    
    .game-rules {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .game-rules-list li {
        padding: 30px 20px;
    }
    
    .game-rules h2 {
        font-size: 26px;
    }
}

.faq {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 12px;
}

.faq > p {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}


summary {
    padding: 24px 30px;
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}


summary::after {
    content: '+';
    font-family: monospace;
    color: var(--accent-cyan);
    font-size: 24px;
    transition: transform 0.3s ease;
}

summary:hover {
    background: rgba(255, 255, 255, 0.04);
}


details[open] {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--accent-blue);
}


.faq-content {
    padding: 0 30px 24px;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 15px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


summary::-webkit-details-marker {
    display: none;
}


@media (max-width: 480px) {
    .faq {
        padding: 60px 20px;
    }
    
    summary {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-content {
        padding: 0 20px 20px;
    }
}

.contact {
    padding: 100px 2%;
    background: radial-gradient(circle at center, rgba(48, 213, 194, 0.05) 0%, transparent 70%);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 32px;
    backdrop-filter: blur(15px);
}

.contact-wrapper h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.form-group label {
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(48, 213, 194, 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(48, 213, 194, 0.2);
}


.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    font-size: 14px;
    color: var(--text-dim);
}

.form-checkbox input {
    margin-top: 4px;
    accent-color: var(--accent-cyan);
}


.submit-btn {
    background: linear-gradient(90deg, #000 0%, #007a33 100%); 
    color: #fff;
    padding: 18px;
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% { box-shadow: 0 0 0 0 rgba(48, 213, 194, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(48, 213, 194, 0); }
    100% { box-shadow: 0 0 0 0 rgba(48, 213, 194, 0); }
}


.success-box {
    text-align: center;
    padding: 40px 0;
}

.success-box.hidden { display: none; }

.success-icon {
    font-size: 60px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.retry-btn {
    margin-top: 30px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
}

.privacy-policy {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.privacy-policy h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-main);
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-policy h3 {
    color: var(--accent-cyan);
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}


.privacy-policy h3::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.privacy-policy p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}


.privacy-policy ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.privacy-policy li {
    color: var(--text-dim);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.privacy-policy li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.privacy-policy strong {
    color: var(--text-main);
    font-weight: 600;
}


.privacy-policy a {
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.privacy-policy a:hover {
    border-bottom-color: var(--accent-cyan);
    text-shadow: 0 0 8px var(--accent-cyan);
}


@media (max-width: 768px) {
    .privacy-policy {
        margin: 30px 15px;
        padding: 30px 20px;
        border-radius: 24px;
    }

    .privacy-policy h3 {
        font-size: 20px;
    }

    .privacy-policy h3::before {
        width: 20px;
    }
}


@media print {
    .privacy-policy {
        background: white;
        color: black;
        border: none;
        backdrop-filter: none;
    }
    
    .privacy-policy h1, .privacy-policy h3, .privacy-policy p, .privacy-policy li {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}

.gameplay {
    padding: 80px 5%;
    overflow: hidden; 
}

.gameplay h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 12px;
}

.gameplay > p {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 50px;
}

.gameplay-wrapper {
    padding-bottom: 50px; 
}

.gameplay-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    height: 400px; 
    transition: transform 0.3s ease;
}

.gameplay-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.gameplay-item-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(3, 5, 8, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(5px);
    transform: translateY(20px);
    opacity: 1;
    transition: all 0.3s ease;

}

.gameplay-item:hover img {
    transform: scale(1.1);
}

.gameplay-item h3 {
    color: var(--accent-cyan);
    font-size: 20px;
    margin-bottom: 10px;
}

.gameplay-item p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}


.swiper-pagination-bullet {
    background: var(--accent-blue) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-blue);
}

@media (max-width: 768px) {
    .gameplay-item { height: 300px; }
    .gameplay-item-text { opacity: 1; transform: translateY(0); }
}

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

.burger.toggle span:nth-child(2) {
    opacity: 0;
}

.burger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 600px) {
    .footer-first img {
        margin: 0 auto;
        margin-bottom: 25px;
    }
}

.gameplay-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px 0 50px;
}

.gameplay-item {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-dark);
}

.gameplay-item img {
    width: 100%;
    height: 250px;
    object-fit: cover; 
    display: block;
}

.gameplay-item-text {
    padding: 28px;
}

.gameplay-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow: hidden; 
}

.gameplay-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
}

@media (max-width: 1024px) {
    .gameplay {
        display: none;
    }

    .contact-wrapper {
        padding: 20px;
    }
}

/* @media (max-width: 512px) {
    .contact-wrapper {
        max-width: 330px
    }
} */

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-popup.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    max-width: 600px;
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-icon {
    font-size: 40px;
}

.cookie-text h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}

.cookie-text p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.cookie-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.cookie-btn.accept {
    background: var(--accent-cyan);
    color: #000;
}

.cookie-btn.accept:hover {
    box-shadow: 0 0 15px var(--accent-cyan);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.cookie-btn.reject:hover {
    background: rgba(255, 80, 80, 0.1);
    border-color: #ff5050;
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-btns {
        width: 100%;
        flex-direction: row;
    }
    .cookie-btn {
        flex: 1;
    }
}