@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --bg-dark: #070712;
    --bg-card: #151528;
    --primary: #9d00ff;
    --primary-glow: rgba(157, 0, 255, 0.6);
    --secondary: #ffb700;
    --secondary-glow: rgba(255, 183, 0, 0.6);
    --text-main: #f0f0f5;
    --text-muted: #a0a0b5;
    --border-color: #2a2a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}

summary {
    display: list-item;
}

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

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

ul {
    list-style: none;
}


.site-header {
    background: rgba(7, 7, 18, 0.85);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--secondary-glow);
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.nav-links li a:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--secondary-glow);
}

.auth-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
}

.btn-login {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-register {
    background: linear-gradient(45deg, var(--secondary), #ff8c00);
    color: #000;
}

.btn-register:hover {
    box-shadow: 0 0 20px var(--secondary-glow);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


.hero {
    margin-top: 70px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: radial-gradient(circle at right, rgba(157, 0, 255, 0.15) 0%, transparent 60%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(45deg, var(--secondary), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,183,0,0.3);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 40px var(--primary-glow);
    border: 2px solid var(--border-color);
    animation: float 6s ease-in-out infinite;
}

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


section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--secondary);
}


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

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}


.game-block {
    background: linear-gradient(135deg, var(--bg-card), #0f0f1f);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.game-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.game-iframe-container {
    width: 320px;
    height: 568px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    position: relative;
    background: #000;
}

.game-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    flex: 1.2;
}

.game-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.game-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}


.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.reviewer-name {
    font-weight: 700;
    color: #fff;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    color: var(--secondary);
    margin-bottom: 10px;
}


.content-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

.split-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.split-block.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary);
}

.split-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.split-img-container {
    flex: 1;
}


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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}


footer {
    background: #05050d;
    padding: 60px 5% 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

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

.age-18 {
    width: 40px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: #666;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #fff;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 5%;
    right: 5%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-banner.active {
    display: flex;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    color: var(--text-muted);
}


.ai-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #4b0082);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.ai-widget svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(157, 0, 255, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
}


.page-header {
    margin-top: 70px;
    padding: 60px 5% 40px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(157, 0, 255, 0.1), transparent);
}

.page-header h1 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
}

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

.page-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.page-content h2, .page-content h3 {
    color: #fff;
    margin: 30px 0 15px;
}

.page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 10px;
}


@media (max-width: 900px) {
    .nav-links, .auth-btns {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 22px;
        display: block;
        padding: 10px;
    }

    .auth-btns {
        gap: 15px;
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
        font-size: 28px;
        color: #fff;
    }

    .site-header.mobile-active {
        background: rgba(15, 15, 28, 0.98);
        backdrop-filter: blur(10px);
        height: 100vh;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        transition: all 0.3s ease;
    }

    .site-header.mobile-active .logo {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .site-header.mobile-active .mobile-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 36px;
    }

    .site-header.mobile-active .nav-links,
    .site-header.mobile-active .auth-btns {
        display: flex;
        animation: fadeInMenu 0.4s ease forwards;
    }

    .site-header.mobile-active .auth-btns {
        margin-top: 40px;
    }
}

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

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .split-block, .split-block.reverse {
        flex-direction: column;
    }

    .game-block {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
    }
}


.pros-cons-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        flex-direction: column;
    }
}

.pro-con-card {
    flex: 1;
    background: linear-gradient(145deg, #151528, #0f0f1c);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.pro-card {
    border-top: 4px solid #00ff88;
}

.con-card {
    border-top: 4px solid #ff3366;
}

.pro-con-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.pro-con-header svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.pro-card .pro-con-header {
    color: #00ff88;
}

.con-card .pro-con-header {
    color: #ff3366;
}

.pro-con-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-con-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-muted);
    transition: transform 0.3s ease, background 0.3s ease;
}

.pro-con-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.pro-con-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pro-card .pro-con-list li svg {
    fill: #00ff88;
}

.con-card .pro-con-list li svg {
    fill: #ff3366;
}


.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.game-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary);
}

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

.game-card-content h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
}

.game-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}


.ai-chat-window {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(157, 0, 255, 0.3);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
}

.ai-chat-window.active {
    display: flex;
}

.ai-chat-header {
    background: linear-gradient(135deg, var(--primary), #6000a3);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.ai-chat-close {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.ai-chat-body {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-msg {
    padding: 10px;
    border-radius: 10px;
    max-width: 85%;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}

.ai-msg.bot {
    background: #2a2a40;
    align-self: flex-start;
    color: #eee;
    border-bottom-left-radius: 0;
}

.ai-msg.user {
    background: var(--primary);
    align-self: flex-end;
    color: #fff;
    border-bottom-right-radius: 0;
}

.ai-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.ai-option-btn {
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
    transition: 0.2s;
}

.ai-option-btn:hover {
    background: var(--primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-chat-footer {
    display: flex;
    padding: 10px;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-chat-input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.ai-chat-send {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 8px 12px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.ai-chat-send:hover {
    background: #7a00cc;
}
