:root {
    --bg: #070812;
    --bg-soft: #0d0f1c;
    --card: #111321;
    --card-hover: #16192a;

    --primary: #7c3cff;
    --primary-light: #a875ff;
    --secondary: #18d8ff;

    --text: #f5f7ff;
    --text-soft: #a9aec2;
    --border: rgba(255, 255, 255, 0.08);

    --container: 1200px;
    --radius: 18px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 8, 18, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 0 25px rgba(124, 60, 255, 0.4);
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-text > span {
    color: var(--secondary);
}

.logo-text small {
    display: block;
    color: var(--text-soft);
    font-size: 7px;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
}

.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -29px;
    height: 2px;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn,
.menu-toggle {
    border: 1px solid var(--border);
    background: var(--card);
    color: white;
    cursor: pointer;
}

.search-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 24px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
}


/* HERO */

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 15% 50%, rgba(124, 60, 255, 0.16), transparent 35%),
        radial-gradient(circle at 85% 30%, rgba(24, 216, 255, 0.1), transparent 30%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(124, 60, 255, 0.35);
    border-radius: 50px;
    background: rgba(124, 60, 255, 0.08);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 12px var(--secondary);
}

.hero-content h1 {
    max-width: 680px;
    margin: 22px 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero-content h1 strong {
    display: block;
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(24, 216, 255, 0.3);
}

.hero-content > p {
    max-width: 600px;
    color: var(--text-soft);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #5c27e8);
    box-shadow: 0 10px 30px rgba(124, 60, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(124, 60, 255, 0.4);
}

.btn-outline {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: rgba(24, 216, 255, 0.06);
}

.hero-stat {
    display: flex;
    gap: 35px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 22px;
}

.stat-item span {
    color: var(--text-soft);
    font-size: 12px;
}


/* HERO IMAGE */

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    height: 510px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    transform: rotate(2deg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(124, 60, 255, 0.15);
}

.hero-image-card img {
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 25%, rgba(7, 8, 18, 0.92) 100%),
        linear-gradient(90deg, rgba(7, 8, 18, 0.2), transparent);
}

.hero-image-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.hero-image-content span {
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-image-content h2 {
    margin-top: 6px;
    font-size: 45px;
    line-height: 1;
}

.hero-image-content p {
    margin-top: 7px;
    color: var(--text-soft);
}

.floating-tag {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(13, 15, 28, 0.88);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 700;
}

.tag-one {
    top: 30px;
    left: -30px;
}

.tag-two {
    right: -30px;
    bottom: 80px;
}

.hero-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.glow-one {
    background: var(--primary);
    top: 10%;
    right: 5%;
}

.glow-two {
    background: var(--secondary);
    bottom: 0;
    left: 10%;
}


/* QUICK */

.quick-section {
    padding: 25px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    transition: var(--transition);
}

.quick-card:hover {
    border-color: rgba(124, 60, 255, 0.4);
    transform: translateY(-3px);
}

.quick-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(124, 60, 255, 0.12);
    font-size: 20px;
}

.quick-card div:nth-child(2) {
    flex: 1;
}

.quick-card strong,
.quick-card span {
    display: block;
}

.quick-card strong {
    font-size: 13px;
}

.quick-card span {
    color: var(--text-soft);
    font-size: 11px;
}

.quick-card b {
    color: var(--secondary);
}


/* SECTION */

.section {
    padding: 100px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2,
.why-content h2,
.faq-intro h2 {
    margin-top: 7px;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading p {
    max-width: 570px;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 14px;
}

.section-label {
    color: var(--secondary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.view-all,
.text-link {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
}


/* GAMES */

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.game-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 60, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.game-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.game-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.06);
}

.game-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 6px;
    background: var(--primary);
    font-size: 9px;
    font-weight: 900;
}

.game-info {
    padding: 18px;
}

.game-info > span {
    color: var(--secondary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.game-info h3 {
    margin-top: 4px;
    font-size: 18px;
}

.game-info p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 12px;
}


/* PROMO */

.promo-section {
    padding-bottom: 100px;
}

.promo-banner {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid var(--border);
}

.promo-banner img {
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 8, 18, 0.95), rgba(7, 8, 18, 0.3)),
        linear-gradient(0deg, rgba(7, 8, 18, 0.5), transparent);
}

.promo-content {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
}

.promo-content h2 {
    margin: 12px 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
}

.promo-content h2 strong {
    display: block;
    color: var(--secondary);
}

.promo-content p {
    margin-bottom: 25px;
    color: var(--text-soft);
}


/* CATEGORY */

.category-section {
    background: var(--bg-soft);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    min-height: 280px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 216, 255, 0.35);
}

.category-number {
    color: rgba(255, 255, 255, 0.12);
    font-size: 42px;
    font-weight: 900;
}

.category-icon {
    margin: 30px 0 15px;
    font-size: 30px;
}

.category-card h3 {
    font-size: 19px;
}

.category-card p {
    margin: 7px 0 20px;
    color: var(--text-soft);
    font-size: 12px;
}

.category-card > span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}


/* WHY */

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.why-content > p {
    max-width: 550px;
    margin: 20px 0;
    color: var(--text-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--card);
}

.feature-card > span {
    font-size: 25px;
}

.feature-card h3 {
    margin-top: 18px;
    font-size: 17px;
}

.feature-card p {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 12px;
}


/* STEPS */

.steps-section {
    background: var(--bg-soft);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card {
    width: 220px;
    padding: 25px 15px;
    text-align: center;
}

.step-number {
    color: rgba(24, 216, 255, 0.4);
    font-size: 11px;
    font-weight: 900;
}

.step-icon {
    width: 58px;
    height: 58px;
    margin: 10px auto 15px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--card);
    font-size: 23px;
}

.step-card h3 {
    font-size: 16px;
}

.step-card p {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 11px;
}

.step-line {
    width: 35px;
    height: 1px;
    background: var(--border);
}


/* ARTICLES */

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.article-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--card);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 60, 255, 0.4);
}

.article-image {
    height: 220px;
    overflow: hidden;
}

.article-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
}

.article-content > span {
    color: var(--secondary);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.article-content h3 {
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.3;
}

.article-content p {
    color: var(--text-soft);
    font-size: 12px;
}

.article-content small {
    display: block;
    margin-top: 18px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
}


/* FAQ */

.faq-preview {
    background: var(--bg-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.faq-intro p {
    max-width: 450px;
    margin: 20px 0;
    color: var(--text-soft);
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: white;
    display: flex;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.faq-question span {
    color: var(--secondary);
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-soft);
    font-size: 13px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}


/* FOOTER */

.site-footer {
    padding: 70px 0 25px;
    border-top: 1px solid var(--border);
    background: #05060d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand > p {
    max-width: 330px;
    margin: 18px 0;
    color: var(--text-soft);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 800;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-column a {
    color: var(--text-soft);
    font-size: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #686d80;
    font-size: 10px;
}

.site-header.scrolled {
    background: rgba(5, 6, 13, 0.97);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}