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

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

:root {
    --c-bg: #231336;
    --c-black: #000000;
    --c-pink: #CC297E;
    --c-pink-dark: #a81f64;
    --c-pink-light: #e03390;
    --c-white: #ffffff;
    --c-gray: #b0a8c0;
    --c-gray-light: #d4cce0;
    --c-card: #2e1a45;
    --c-card2: #1a0d28;
    --c-border: rgba(204, 41, 126, 0.25);
    --font-main: 'Montserrat', Arial, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --trans: 0.3s ease
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--c-bg);
    color: var(--c-white);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: var(--c-pink);
    text-decoration: none;
    transition: color var(--trans)
}

a:hover {
    color: var(--c-pink-light)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: all var(--trans);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

.btn--primary {
    background: var(--c-pink);
    color: var(--c-white)
}

.btn--primary:hover {
    background: var(--c-pink-dark);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(204, 41, 126, 0.45)
}

.btn--secondary {
    background: var(--c-black);
    color: var(--c-white);
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.btn--secondary:hover {
    background: #1a1a1a;
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.3)
}

.btn--ghost {
    background: transparent;
    color: var(--c-white);
    border: 2px solid var(--c-pink)
}

.btn--ghost:hover {
    background: var(--c-pink);
    color: var(--c-white)
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius)
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.8rem
}

.btn--full {
    width: 100%
}

/* HEADER */
#site-header {
    background: var(--c-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--c-pink)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo a {
    display: flex;
    align-items: center
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap
}

.header-nav a {
    color: var(--c-gray-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all var(--trans)
}

.header-nav a:hover {
    color: var(--c-white);
    background: rgba(204, 41, 126, 0.15)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--c-gray);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #2dce89;
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.4)
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(45, 206, 137, 0)
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--trans)
}

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

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

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

.mobile-menu {
    display: none;
    background: var(--c-black);
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.mobile-menu.active {
    display: block
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.mobile-menu nav a {
    color: var(--c-gray-light);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.mobile-menu nav a:hover {
    color: var(--c-white);
    background: rgba(204, 41, 126, 0.15)
}

.mobile-menu-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

/* HERO SLIDER */
#hero {
    position: relative;
    overflow: hidden;
    background: var(--c-card2)
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 520px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    z-index: 2
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 19, 54, 0.92) 40%, rgba(35, 19, 54, 0.4) 100%)
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 48px;
    max-width: 600px
}

.hero-badge {
    display: inline-block;
    background: var(--c-pink);
    color: var(--c-white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--c-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5)
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--c-gray-light);
    margin-bottom: 24px;
    max-width: 480px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--trans);
    border: none
}

.hero-dot.active {
    background: var(--c-pink);
    transform: scale(1.3)
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(0, 0, 0, 0.5);
    color: var(--c-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--trans)
}

.hero-arrow:hover {
    background: var(--c-pink);
    border-color: var(--c-pink)
}

.hero-arrow--prev {
    left: 16px
}

.hero-arrow--next {
    right: 16px
}

/* SECTIONS */
.section {
    padding: 64px 0
}

.section--dark {
    background: var(--c-card2)
}

.section--card {
    background: var(--c-card)
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 14px
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--c-pink);
    border-radius: 2px
}

.section-subtitle {
    color: var(--c-gray);
    font-size: 0.95rem;
    margin-bottom: 40px
}

.section-header {
    margin-bottom: 48px
}

/* TABLE OF CONTENTS */
#toc {
    padding: 40px 0
}

.toc-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: all var(--trans);
    color: var(--c-gray-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none
}

.toc-item:hover {
    background: rgba(204, 41, 126, 0.12);
    border-color: var(--c-pink);
    color: var(--c-white);
    transform: translateY(-2px)
}

.toc-item-icon {
    font-size: 1.2rem;
    flex-shrink: 0
}

.toc-num {
    color: var(--c-pink);
    font-weight: 800;
    font-size: 0.8rem;
    min-width: 22px
}

/* SCREENSHOTS */
#screenshots .screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.screenshot-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: all var(--trans);
    cursor: pointer
}

.screenshot-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-pink);
    box-shadow: 0 12px 40px rgba(204, 41, 126, 0.25)
}

.screenshot-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

/* WINNERS */
#winners .winners-table-wrap {
    overflow-x: auto
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

.winners-table thead tr {
    background: var(--c-pink)
}

.winners-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-white)
}

.winners-table td {
    padding: 11px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.winners-table tbody tr {
    transition: background var(--trans)
}

.winners-table tbody tr:hover {
    background: rgba(204, 41, 126, 0.08)
}

.winners-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.2)
}

.winners-table tbody tr:nth-child(even):hover {
    background: rgba(204, 41, 126, 0.1)
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.8rem
}

.rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000
}

.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #000
}

.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff
}

.rank-other {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-gray)
}

.win-amount {
    color: #2dce89;
    font-weight: 700
}

/* TOURNAMENTS */
#tournaments .tournaments-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--trans);
    display: flex;
    flex-direction: column
}

.tournament-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-pink);
    box-shadow: 0 12px 40px rgba(204, 41, 126, 0.2)
}

.tournament-badge {
    background: linear-gradient(135deg, var(--c-pink), #8b0057);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-white);
    display: inline-block;
    border-radius: 0 0 8px 0;
    align-self: flex-start;
    margin-bottom: 12px
}

.tournament-card-inner {
    padding: 0 20px 20px
}

.tournament-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 8px
}

.tournament-desc {
    color: var(--c-gray);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.5
}

.tournament-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.tournament-timer-label {
    font-size: 0.75rem;
    color: var(--c-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px
}

.tournament-timer {
    display: flex;
    gap: 8px
}

.timer-block {
    background: var(--c-black);
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 48px
}

.timer-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-white);
    display: block;
    line-height: 1
}

.timer-unit {
    font-size: 0.6rem;
    color: var(--c-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.timer-sep {
    color: var(--c-pink);
    font-size: 1.3rem;
    font-weight: 800;
    align-self: center
}

.tournament-prize-label {
    font-size: 0.75rem;
    color: var(--c-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.tournament-prize {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--c-pink)
}

/* APP INFO */
#app-info .app-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: start
}

.app-table-wrap {
    overflow-x: auto
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--c-border)
}

.app-table th, .app-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9rem
}

.app-table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--c-gray);
    font-weight: 600;
    width: 40%
}

.app-table td {
    color: var(--c-white);
    font-weight: 500
}

.app-table tr:last-child th, .app-table tr:last-child td {
    border-bottom: none
}

.app-downloads {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--c-black);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--c-white);
    transition: all var(--trans)
}

.download-btn:hover {
    border-color: var(--c-pink);
    background: #111;
    color: var(--c-white);
    transform: translateX(4px)
}

.download-btn-icon {
    font-size: 1.8rem;
    flex-shrink: 0
}

.download-btn-text small {
    font-size: 0.7rem;
    color: var(--c-gray);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.download-btn-text strong {
    font-size: 1rem;
    font-weight: 700;
    display: block
}

/* WHEEL OF FORTUNE */
#wheel-game {
    background: linear-gradient(180deg, var(--c-card2) 0%, var(--c-bg) 100%)
}

.wheel-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center
}

.wheel-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 24px
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(204, 41, 126, 0.4), 0 0 80px rgba(204, 41, 126, 0.15);
    display: block
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 32px solid var(--c-pink);
    filter: drop-shadow(0 4px 8px rgba(204, 41, 126, 0.6))
}

.wheel-result {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    background: var(--c-card);
    margin-bottom: 20px
}

.wheel-result-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-white)
}

.wheel-result-text.win {
    color: #2dce89
}

.wheel-result-text.lose {
    color: var(--c-gray)
}

#wheel-spin-btn {
    min-width: 200px
}

#wheel-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important
}

/* REVIEW CONTENT */
#review {
    background: var(--c-bg)
}

.review-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    line-height: 1.8
}

.review-content h2, .review-content h3, .review-content h4 {
    color: var(--c-white);
    margin: 1.5em 0 0.6em;
    font-weight: 700
}

.review-content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--c-pink);
    padding-bottom: 8px
}

.review-content h3 {
    font-size: 1.2rem;
    color: var(--c-pink-light)
}

.review-content h4 {
    font-size: 1rem
}

.review-content p {
    color: var(--c-gray-light);
    margin-bottom: 1em
}

.review-content ul, .review-content ol {
    color: var(--c-gray-light);
    padding-left: 24px;
    margin-bottom: 1em
}

.review-content li {
    margin-bottom: 6px;
    line-height: 1.6
}

.review-content strong, .review-content b {
    color: var(--c-white);
    font-weight: 700
}

.review-content a {
    color: var(--c-pink);
    text-decoration: underline
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    display: block;
    overflow-x: auto
}

.review-content table th, .review-content table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border)
}

.review-content table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--c-white);
    font-weight: 700
}

.review-content table td {
    color: var(--c-gray-light)
}

.review-content blockquote {
    border-left: 4px solid var(--c-pink);
    padding: 12px 20px;
    background: rgba(204, 41, 126, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5em 0;
    color: var(--c-gray-light);
    font-style: italic
}

.review-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1em 0
}

/* AUTHOR */
#author {
    background: var(--c-card2)
}

.author-card {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 32px;
    align-items: start;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-pink);
    flex-shrink: 0
}

.author-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 4px
}

.author-role {
    font-size: 0.85rem;
    color: var(--c-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px
}

.author-bio {
    color: var(--c-gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.author-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--c-black);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: var(--c-gray-light);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--trans)
}

.author-social:hover {
    border-color: var(--c-pink);
    color: var(--c-pink)
}

/* FOOTER */
#site-footer {
    background: var(--c-black);
    padding: 48px 0 24px;
    margin-top: auto
}

.footer-top {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 32px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px
}

.footer-nav a {
    color: var(--c-gray);
    font-size: 0.85rem;
    transition: color var(--trans)
}

.footer-nav a:hover {
    color: var(--c-white)
}

.footer-logos-section {
    margin-bottom: 24px
}

.footer-logos-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-gray);
    margin-bottom: 12px;
    font-weight: 600
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.footer-logo-badge {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-gray-light)
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-copyright {
    color: var(--c-gray);
    font-size: 0.78rem;
    line-height: 1.6
}

.footer-legal {
    color: #6b5f7a;
    font-size: 0.72rem;
    margin-top: 8px;
    line-height: 1.5
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--c-gray);
    color: var(--c-gray);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 12px
}

#sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0d0020 0%, #1a0030 50%, #0d0020 100%);
    border-top: 2px solid var(--c-pink);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(204, 41, 126, 0.3)
}

.sticky-widget-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-white)
}

.sticky-widget-bonus {
    font-size: 1rem;
    font-weight: 900;
    color: var(--c-pink)
}

.sticky-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--c-gray);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--trans)
}

.sticky-widget-close:hover {
    color: var(--c-white)
}

body.widget-closed #sticky-widget {
    display: none
}

body {
    padding-bottom: 70px
}

body.widget-closed {
    padding-bottom: 0
}

.info-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    line-height: 1.8;
    margin: 40px 0
}

.info-content h2 {
    color: var(--c-white);
    font-size: 1.4rem;
    margin: 1.5em 0 0.6em;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 8px
}

.info-content h3 {
    color: var(--c-pink-light);
    font-size: 1.1rem;
    margin: 1.2em 0 0.5em
}

.info-content p {
    color: var(--c-gray-light);
    margin-bottom: 1em
}

.info-content ul {
    color: var(--c-gray-light);
    padding-left: 20px;
    margin-bottom: 1em
}

.info-content li {
    margin-bottom: 6px
}

.info-content strong {
    color: var(--c-white)
}

.info-content a {
    color: var(--c-pink)
}

.info-page-hero {
    background: linear-gradient(135deg, var(--c-card2), var(--c-card));
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--c-border)
}

.info-page-hero h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--c-white)
}

.info-page-hero p {
    color: var(--c-gray);
    margin-top: 8px
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.82rem;
    color: var(--c-gray);
    margin-bottom: 16px
}

.breadcrumb a {
    color: var(--c-gray);
    transition: color var(--trans)
}

.breadcrumb a:hover {
    color: var(--c-white)
}

.breadcrumb-sep {
    color: var(--c-pink)
}

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--trans)
}

.card:hover {
    border-color: var(--c-pink);
    box-shadow: 0 8px 32px rgba(204, 41, 126, 0.15)
}

.xb7f2a {
    display: none
}

.qr9v3k {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.zp4mx1 {
    position: absolute;
    pointer-events: none;
    opacity: 0
}

.wp-block-placeholder {
    display: none
}

.entry-meta {
    display: none
}

.post-thumbnail-wrapper {
    display: none
}

.alignleft, .alignright, .aligncenter, .wp-caption {
}

.has-large-font-size {
}

.is-layout-flex {
}

/*  */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards
}

[data-aos] {
    opacity: 0;
    transition: all 0.7s ease
}

[data-aos].aos-animate {
    opacity: 1
}

[data-aos="fade-up"] {
    transform: translateY(30px)
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0)
}

[data-aos="fade-left"] {
    transform: translateX(30px)
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0)
}

[data-aos="fade-right"] {
    transform: translateX(-30px)
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0)
}

[data-aos="zoom-in"] {
    transform: scale(0.9)
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1)
}

/*  */
.contact-form {
    max-width: 560px;
    margin: 0 auto
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--c-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all var(--trans)
}

.form-control:focus {
    outline: none;
    border-color: var(--c-pink);
    background: rgba(204, 41, 126, 0.08)
}

textarea.form-control {
    resize: vertical;
    min-height: 140px
}

select.form-control option {
    background: var(--c-card)
}

/*  */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns:1fr 1fr
    }

    #app-info .app-grid {
        grid-template-columns:1fr
    }

    #tournaments .tournaments-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto auto auto
    }

    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-slider {
        height: 420px
    }

    .hero-content {
        padding: 0 24px
    }

    .hero-content h2 {
        font-size: 1.8rem
    }

    .section {
        padding: 40px 0
    }

    .section-title {
        font-size: 1.4rem
    }

    #screenshots .screenshots-grid {
        grid-template-columns:1fr
    }

    .screenshots-slider-wrap {
        overflow: hidden;
        position: relative
    }

    .screenshots-slider {
        display: flex;
        transition: transform 0.4s ease
    }

    .screenshots-slider .screenshot-card {
        min-width: 280px;
        flex-shrink: 0
    }

    #tournaments .tournaments-grid {
        grid-template-columns:1fr
    }

    .footer-top {
        grid-template-columns:1fr
    }

    .author-card {
        grid-template-columns:1fr;
        text-align: center
    }

    .author-avatar {
        margin: 0 auto
    }

    .author-socials {
        justify-content: center
    }

    .sticky-widget-text {
        font-size: 0.8rem
    }

    .review-content {
        padding: 24px
    }

    .info-content {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 360px
    }

    .hero-content h2 {
        font-size: 1.5rem
    }

    .hero-content p {
        font-size: 0.9rem
    }

    .header-actions .btn--secondary {
        display: none
    }

    .toc-grid {
        grid-template-columns:1fr 1fr
    }
}
