/*
Theme Name: Streamers Kick ES (Final Layout)
Version: 7.0
*/

:root {
    --bg-body: #0b0e11;
    --bg-card: #191b1f;
    --bg-hover: #24272c;
    --kick-green: #53fc18;
    --text-white: #ffffff;
    --text-muted: #94969a;
    --border: #2e3035;
    --radius: 8px;
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0; padding: 0;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

.site-header {
    background: #141619;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 22px; color: #fff; text-transform: uppercase; letter-spacing: -1px; }
.logo span { color: var(--kick-green); }

.lang-badge {
    display: flex; align-items: center; gap: 8px;
    background: #24272c; padding: 6px 12px; border-radius: 50px;
    font-size: 13px; font-weight: 700; border: 1px solid #333;
}
.lang-flag { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; }

.streamer-hero {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 30px;
    display: flex;
    gap: 30px;
    align-items: start;
    border: 1px solid var(--border);
}
.hero-avatar img {
    width: 140px; height: 140px; border-radius: 12px;
    object-fit: cover; border: 2px solid var(--kick-green);
    box-shadow: 0 0 20px rgba(83, 252, 24, 0.2);
}
.hero-info { flex: 1; min-width: 0; }
.hero-title h1 { margin: 0 0 10px; font-size: 32px; line-height: 1.1; font-weight: 800; }

.viewer-stat {
    background: rgba(83, 252, 24, 0.1); color: var(--kick-green);
    padding: 4px 10px; border-radius: 4px; font-weight: 700; font-size: 13px;
    display: inline-flex; align-items: center; margin-bottom: 15px;
}
.viewer-stat::before {
    content: ''; display: block; width: 6px; height: 6px; background: var(--kick-green);
    border-radius: 50%; margin-right: 8px; box-shadow: 0 0 8px var(--kick-green);
}

.social-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.social-btn {
    width: 42px; height: 42px; background: #24272c; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #ccc; transition: 0.2s; border: 1px solid var(--border);
}
.social-btn:hover { color: #fff; transform: translateY(-2px); border-color: transparent; }
.social-btn.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.twitter:hover { background: #1DA1F2; }
.social-btn.youtube:hover { background: #FF0000; }
.social-btn.tiktok:hover { background: #000000; border-color: #333; }
.social-btn.discord:hover { background: #5865F2; }
.social-btn.telegram:hover { background: #0088cc; }

.social-btn svg { width: 22px; height: 22px; fill: currentColor; }

.entry-content { margin: 40px 0; font-size: 16px; color: #ddd; }
.entry-content table, .faq-raw-html table {
    width: 100%; border-collapse: collapse; margin: 30px 0;
    background: var(--bg-card); border-radius: 8px; overflow: hidden; font-size: 15px;
}
.entry-content th, .faq-raw-html th {
    background: #24272c; color: #fff; font-weight: 700; text-align: left;
    padding: 15px; border-bottom: 2px solid var(--border);
}
.entry-content td, .faq-raw-html td {
    padding: 15px; border-bottom: 1px solid var(--border); color: #ccc;
}
.entry-content tr:last-child td { border-bottom: none; }

.kick-section { margin: 50px 0; }
.kick-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0;
    background: #000; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border);
}

.bio-section {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--kick-green);
    margin: 40px 0;
}
.bio-title { font-size: 18px; color: #fff; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; }
.bio-text { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.last-streams-section {
    margin: 40px 0;
}
.ls-title { font-size: 16px; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.ls-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ls-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ls-item {
    background: #202328;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #ccc;
    transition: 0.2s;
    display: flex; align-items: center; gap: 8px;
}
.ls-item:hover { border-color: var(--kick-green); color: #fff; background: var(--bg-card); }
.ls-icon { color: var(--kick-green); font-size: 16px; }

.faq-section { margin-top: 60px; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-header-title { text-align: center; margin-bottom: 30px; font-size: 24px; color: #fff; }

.js-accordion-item {
    border: 1px solid var(--border);
    background: var(--bg-card);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.js-accordion-trigger {
    padding: 18px 25px; cursor: pointer; background: var(--bg-card);
    color: #fff; font-weight: 700; display: flex; justify-content: space-between; align-items: center;
    font-size: 16px;
}
.js-accordion-trigger:hover { color: var(--kick-green); }
.js-accordion-trigger::after { content: '+'; font-size: 24px; color: var(--kick-green); line-height: 1; }
.js-accordion-trigger.active::after { content: '−'; }
.js-accordion-content { display: none; padding: 20px 25px; background: #202328; color: #aaa; border-top: 1px solid var(--border); }
.site-footer {
    background: #080a0c; padding: 60px 0 30px; margin-top: 80px;
    border-top: 1px solid var(--border); text-align: center; font-size: 14px;
}
.footer-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; align-items: center; }
.badge-18 {
    border: 2px solid #444; color: #666; font-weight: 900;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.footer-text { max-width: 600px; margin: 0 auto; color: #555; margin-bottom: 20px; }
.copyright { color: #444; }

@media (max-width: 768px) {
    .streamer-hero { flex-direction: column; text-align: center; align-items: center; }
    .social-list { justify-content: center; }
    .hero-info { width: 100%; }
}
.bio-section .social-list { margin-top: 10px; }
.bio-section .social-btn {
    width: 36px; height: 36px; 
    background: transparent;
    border-color: #444;
}
.bio-section .social-btn:hover { border-color: var(--kick-green); }
.bio-section .social-btn svg { width: 18px; height: 18px; }

.home-hero {
    text-align: center; padding: 50px 0 30px;
    background: radial-gradient(circle at center, #1a202c 0%, var(--bg-body) 70%);
}
.home-hero h1 { font-size: 36px; margin-bottom: 15px; color: #fff; }
.hero-desc { max-width: 800px; margin: 0 auto; color: #aaa; font-size: 18px; }
.streamers-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
    margin: 40px 0;
}

.streamer-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.streamer-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(83, 252, 24, 0.15);
    border-color: var(--kick-green);
}
.card-image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}
.card-image img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.card-viewers {
    position: absolute; bottom: 8px; left: 8px;
    background: rgba(0,0,0,0.8); color: var(--kick-green);
    font-size: 11px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
    backdrop-filter: blur(2px);
}
.card-info {
    padding: 15px;
    text-align: center;
}
.card-info h3 {
    margin: 0 0 10px; font-size: 16px; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.go-btn {
    font-size: 12px; color: var(--text-muted); text-transform: uppercase; font-weight: 600;
}
.streamer-card-mini:hover .go-btn { color: var(--kick-green); }
.seo-content-section {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    background: #0f1114;
}
.keywords-cloud { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.keywords-cloud span {
    background: #1f2226; padding: 5px 15px; border-radius: 20px;
    font-size: 12px; color: #888; border: 1px solid #333;
}

@media (max-width: 1024px) {
    .streamers-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .streamers-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .card-info { padding: 10px; }
    .card-info h3 { font-size: 14px; }
}
/* --- HOME PAGE PRO STYLES --- */

/* Hero Interactive */
.home-hero-interactive {
    background: linear-gradient(135deg, #0b0e11 0%, #15181e 100%);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-badge-hero {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 0, 0, 0.15); color: #ff4d4d;
    padding: 6px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 800; letter-spacing: 1px;
    margin-bottom: 20px; border: 1px solid rgba(255, 0, 0, 0.3);
}

.pulse-dot {
    width: 8px; height: 8px; background: #ff4d4d; border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.home-hero-interactive h1 { font-size: 42px; font-weight: 900; margin-bottom: 15px; color: #fff; line-height: 1.1; }
.gradient-text {
    background: linear-gradient(90deg, #53fc18, #2ecc71);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtext {
    max-width: 700px; margin: 0 auto 40px; color: #94969a; font-size: 18px; line-height: 1.6;
}

/* Ticker (Бегущая строка) */
.wins-ticker-wrapper {
    background: #191b1f; border-top: 1px solid #2e3035; border-bottom: 1px solid #2e3035;
    padding: 12px 0; overflow: hidden; white-space: nowrap; position: relative;
}
.wins-ticker {
    display: inline-block; animation: ticker 100s linear infinite;
}
.ticker-item {
    display: inline-block; margin: 0 30px; color: #ccc; font-size: 14px;
}
.ticker-item strong { color: var(--kick-green); }

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Filters */
.streamer-filters {
    display: flex; justify-content: center; gap: 10px; margin: 40px 0; flex-wrap: wrap;
}
.filter-btn {
    background: #191b1f; border: 1px solid #2e3035; color: #fff;
    padding: 10px 20px; border-radius: 50px; cursor: pointer; font-weight: 600;
    transition: 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--kick-green); color: #000; border-color: var(--kick-green);
    transform: translateY(-2px);
}

/* Grid Pro 5x */
.streamers-grid-5 {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
    margin-bottom: 40px;
}

.streamer-card-pro {
    background: #191b1f; border: 1px solid #2e3035; border-radius: 12px;
    overflow: hidden; position: relative; transition: 0.3s;
}
.streamer-card-pro:hover {
    transform: translateY(-5px); border-color: var(--kick-green);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.1);
}
.card-link-overlay { position: absolute; inset: 0; z-index: 5; }

.card-top { position: relative; height: 80px; background: linear-gradient(180deg, #24272c 0%, #191b1f 100%); }
.avatar-wrap {
    width: 70px; height: 70px; border-radius: 50%;
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    border: 3px solid #191b1f; padding: 2px; background: #191b1f;
}
.avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.live-status {
    position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    background: #ff0000; color: #fff; font-size: 9px; font-weight: 800;
    padding: 2px 6px; border-radius: 4px; border: 2px solid #191b1f;
}

.card-body { padding: 30px 15px 15px; text-align: center; }
.card-body h3 { font-size: 15px; color: #fff; margin: 0 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.viewers-count {
    color: var(--kick-green); font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 10px;
}
.platform-tag {
    font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
    color: #666; background: #0f1114; padding: 4px 8px; border-radius: 4px;
}

.load-more-wrap { text-align: center; margin-bottom: 60px; }
.btn-load-more {
    display: inline-block; border: 1px solid #444; color: #fff;
    padding: 12px 30px; border-radius: 8px; font-weight: 600;
    transition: 0.2s;
}
.btn-load-more:hover { border-color: #fff; background: #fff; color: #000; }

/* SEO Content & Cloud */
.seo-deep-content { padding: 60px 0; border-top: 1px solid #222; }
.content-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.seo-col h2 { font-size: 28px; margin-bottom: 20px; color: #fff; }
.seo-col h3 { font-size: 22px; margin-bottom: 15px; color: #fff; }
.seo-col p { font-size: 16px; color: #aaa; margin-bottom: 20px; }
.seo-list { list-style: none; padding: 0; }
.seo-list li { margin-bottom: 10px; color: #ccc; }
.highlight { color: var(--kick-green); }

.lsi-tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lsi-tags-cloud span {
    background: #1f2226; border: 1px solid #333; padding: 8px 16px;
    border-radius: 50px; font-size: 13px; color: #888; transition: 0.2s; cursor: default;
}
.lsi-tags-cloud span:hover { border-color: var(--kick-green); color: #fff; }

/* FAQ Grid */
.faq-title { text-align: center; font-size: 32px; margin-bottom: 40px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-card {
    background: #191b1f; border: 1px solid #2e3035; border-radius: 12px; overflow: hidden;
}
.faq-head {
    padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-head h3 { font-size: 16px; margin: 0; color: #fff; }
.icon-plus { font-size: 24px; color: var(--kick-green); font-weight: 300; }
.faq-body {
    display: none; padding: 0 20px 20px; color: #aaa; font-size: 15px; line-height: 1.6;
}
.faq-card.active .faq-body { display: block; }
.faq-card.active .icon-plus { transform: rotate(45deg); }

/* Responsive */
@media (max-width: 1024px) {
    .streamers-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .content-columns, .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .streamers-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .home-hero-interactive h1 { font-size: 28px; }
}
/* --- ОБНОВЛЕНИЯ ДЛЯ ГЛАВНОЙ (v8.0) --- */

/* Hero: Упростили, убрали лишние бейджи */
.home-hero-interactive {
    background: linear-gradient(135deg, #0b0e11 0%, #15181e 100%);
    padding: 50px 0 30px;
    text-align: center;
    overflow: hidden;
}
.home-hero-interactive h1 { font-size: 38px; font-weight: 900; margin-bottom: 15px; color: #fff; line-height: 1.1; }
.hero-subtext { max-width: 700px; margin: 0 auto 30px; color: #94969a; font-size: 16px; line-height: 1.6; }

/* Ticker: Плавная анимация */
.wins-ticker-wrapper {
    background: #121418; border-top: 1px solid #2e3035; border-bottom: 1px solid #2e3035;
    padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; margin-top: 20px;
}
.wins-ticker {
    display: inline-block; animation: ticker 40s linear infinite; /* Медленнее и плавнее */
}
.ticker-item {
    display: inline-block; margin: 0 40px; color: #aaa; font-size: 13px; font-family: monospace;
}
.ticker-item strong { color: var(--kick-green); }

/* Сетка 5 колонок без лишних элементов */
.streamers-grid-5 {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px;
    margin: 40px 0;
}
.streamer-card-pro {
    background: #191b1f; border: 1px solid #2e3035; border-radius: 10px;
    overflow: hidden; position: relative; transition: 0.2s;
}
.streamer-card-pro:hover {
    transform: translateY(-3px); border-color: var(--kick-green);
    box-shadow: 0 5px 20px rgba(83, 252, 24, 0.1);
}
.card-top { position: relative; height: 70px; background: linear-gradient(180deg, #202328 0%, #191b1f 100%); }
.avatar-wrap {
    width: 60px; height: 60px; border-radius: 50%;
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    border: 3px solid #191b1f; padding: 2px; background: #191b1f;
}
.avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.card-body { padding: 25px 10px 15px; text-align: center; }
.card-body h3 { font-size: 14px; color: #fff; margin: 0 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }

/* SEO Блок с платежками */
.seo-intro-block { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.seo-intro-block h2 { font-size: 28px; color: #fff; margin-bottom: 20px; }
.seo-intro-block p { font-size: 17px; color: #bbb; line-height: 1.7; }

.payment-methods-grid {
    display: flex; flex-direction: column; gap: 10px;
    background: #121418; padding: 20px; border-radius: 8px; border: 1px solid #2e3035; margin-bottom: 20px;
}
.pm-item { font-size: 14px; color: #ccc; border-bottom: 1px solid #222; padding-bottom: 8px; }
.pm-item:last-child { border-bottom: none; padding-bottom: 0; }
.pm-item strong { color: #fff; margin-right: 5px; }

/* FAQ - Читабельность */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-head h3 { font-size: 15px; font-weight: 600; }

/* Адаптивность */
@media (max-width: 1024px) {
    .streamers-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .streamers-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .home-hero-interactive h1 { font-size: 26px; }
    .content-columns { grid-template-columns: 1fr; }
}
/* --- НОВЫЙ СТИЛЬ КАРТОЧКИ СТРИМЕРА --- */

/* Убираем старую разметку вьюверов если осталась */
.viewers-count, .platform-tag { display: none; } 

/* Новая кнопка "Live Status" */
.live-status-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f1114;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
}

.ls-nick {
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.ls-dot {
    color: #ff0000; /* Красная точка (Live) */
    font-size: 10px;
    animation: blink-dot 1.5s infinite;
    margin: 0 6px;
}

.ls-viewers {
    color: var(--kick-green);
    font-family: monospace;
    font-size: 13px;
}

@keyframes blink-dot {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* При наведении на карточку подсвечиваем кнопку */
.streamer-card-pro:hover .live-status-btn {
    border-color: var(--kick-green);
    background: #1f2226;
}
/* =========================================
   HOME PAGE PRO STYLES (v9.0 Final)
   ========================================= */

/* --- Hero Section --- */
.home-hero-interactive {
    background: linear-gradient(135deg, #0b0e11 0%, #15181e 100%);
    padding: 50px 0 30px;
    text-align: center;
    overflow: hidden;
}
.home-hero-interactive h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.1;
}
.gradient-text {
    background: linear-gradient(90deg, #53fc18, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtext {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #94969a;
    font-size: 16px;
    line-height: 1.6;
}

/* --- Ticker: Бесшовная анимация --- */
.wins-ticker-wrapper {
    background: #121418;
    border-top: 1px solid #2e3035;
    border-bottom: 1px solid #2e3035;
    padding: 12px 0;
    margin-top: 20px;
    width: 100%;
    overflow: hidden; /* Скрывает выходящий текст */
    position: relative;
    white-space: nowrap;
}

.wins-ticker-track {
    display: flex;
    width: max-content; /* Ширина равна контенту */
    /* 180s = 3 минуты на круг. Очень плавно */
    animation: ticker-seamless 180s linear infinite;
}

.wins-ticker-track:hover {
    animation-play-state: paused; /* Пауза при наведении */
}

.ticker-item {
    padding: 0 40px;
    color: #aaa;
    font-size: 13px;
    font-family: monospace; /* Шрифт как в терминале */
}

.ticker-item strong {
    color: var(--kick-green);
}

/* Ключевые кадры: едем от 0 до -50% (половина дублированного списка) */
@keyframes ticker-seamless {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Streamers Grid (5 columns) --- */
.streamers-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.streamer-card-pro {
    background: #191b1f;
    border: 1px solid #2e3035;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.streamer-card-pro:hover {
    transform: translateY(-3px);
    border-color: var(--kick-green);
    box-shadow: 0 5px 20px rgba(83, 252, 24, 0.1);
}

.card-link-overlay {
    position: absolute; inset: 0; z-index: 5;
}

.card-top {
    position: relative;
    height: 70px;
    background: linear-gradient(180deg, #202328 0%, #191b1f 100%);
}

.avatar-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #191b1f;
    padding: 2px;
    background: #191b1f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.avatar-wrap img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card-body {
    padding: 25px 10px 15px;
    text-align: center;
}

.card-body h3 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

/* Кнопка статуса Live */
.live-status-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f1114;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.2s;
}
.streamer-card-pro:hover .live-status-btn {
    border-color: var(--kick-green);
    background: #15181e;
}

.ls-nick {
    color: #ccc;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 60%;
}
.ls-dot {
    color: #ff0000;
    font-size: 10px;
    animation: blink-dot 1.5s infinite;
}
.ls-viewers {
    color: var(--kick-green);
    font-family: monospace;
}

@keyframes blink-dot {
    0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; }
}

.load-more-wrap {
    text-align: center; margin-bottom: 60px;
}
.btn-load-more {
    display: inline-block;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s;
}
.btn-load-more:hover {
    border-color: #fff; background: #fff; color: #000;
}

/* --- SEO Content Blocks --- */
.seo-deep-content {
    padding: 60px 0;
    border-top: 1px solid #222;
    background: #0e1012;
}
.seo-intro-block {
    text-align: center; max-width: 800px; margin: 0 auto 50px;
}
.seo-intro-block h2 {
    font-size: 28px; color: #fff; margin-bottom: 20px;
}
.seo-intro-block p {
    font-size: 17px; color: #bbb; line-height: 1.7;
}

.content-columns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.seo-col h3 {
    font-size: 20px; margin-bottom: 15px; color: #fff; border-left: 3px solid var(--kick-green); padding-left: 15px;
}
.seo-col p {
    font-size: 15px; color: #aaa; margin-bottom: 20px; line-height: 1.6;
}

/* Таблица платежек */
.payment-methods-grid {
    display: flex; flex-direction: column; gap: 10px;
    background: #15181e; padding: 20px;
    border-radius: 8px; border: 1px solid #2e3035;
}
.pm-item {
    font-size: 14px; color: #ccc; border-bottom: 1px solid #222; padding-bottom: 8px;
}
.pm-item:last-child { border-bottom: none; padding-bottom: 0; }
.pm-item strong { color: #fff; margin-right: 5px; }

/* Облако тегов LSI */
.lsi-tags-cloud {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px;
}
.lsi-tags-cloud span {
    background: #1f2226; border: 1px solid #333; padding: 6px 14px;
    border-radius: 50px; font-size: 12px; color: #888; cursor: default;
    transition: 0.2s;
}
.lsi-tags-cloud span:hover {
    border-color: var(--kick-green); color: #fff;
}

/* --- FAQ Section --- */
.home-faq-section {
    padding: 60px 0; background: #0b0e11;
}
.faq-title {
    text-align: center; font-size: 32px; margin-bottom: 40px; color: #fff;
}
.faq-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.faq-card {
    background: #191b1f; border: 1px solid #2e3035; border-radius: 12px; overflow: hidden;
}
.faq-head {
    padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-head h3 {
    font-size: 15px; margin: 0; color: #fff; font-weight: 600;
}
.icon-plus {
    font-size: 24px; color: var(--kick-green); font-weight: 300; transition: 0.3s;
}
.faq-body {
    display: none; padding: 0 20px 20px; color: #aaa; font-size: 14px; line-height: 1.6; border-top: 1px solid #2e3035;
}
.faq-card.active .faq-body { display: block; }
.faq-card.active .icon-plus { transform: rotate(45deg); color: #ff4d4d; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .streamers-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .faq-grid, .content-columns { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .streamers-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .home-hero-interactive h1 { font-size: 28px; }
    .ticker-item { padding: 0 20px; font-size: 12px; }
    .card-body h3 { font-size: 13px; }
}
/* --- 404 PAGE STYLES --- */

.error-404-section {
    text-align: center;
    padding: 80px 0 60px;
    background: radial-gradient(circle at center, #1a202c 0%, var(--bg-body) 70%);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.error-code {
    font-size: 120px;
    line-height: 1;
    font-weight: 900;
    color: var(--kick-green);
    text-shadow: 0 0 30px rgba(83, 252, 24, 0.3);
    margin: 0;
}

.error-title {
    font-size: 32px;
    color: #fff;
    margin: 10px 0 20px;
    text-transform: uppercase;
}

.error-text {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    background: var(--kick-green);
    color: #000;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(83, 252, 24, 0.2);
}

.btn-home:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.suggestion-block {
    padding-bottom: 60px;
}

.suggestion-title {
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    border-left: 4px solid var(--kick-green);
    display: inline-block;
    padding-left: 15px;
}

.suggestion-block {
    text-align: center;
}
.suggestion-block .streamers-grid-5 {
    text-align: left;
}
/* --- SEARCH 404 STYLES --- */
.search-404-wrapper {
    max-width: 500px;
    margin: 20px auto 0;
}

.search-form-custom {
    display: flex;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #333;
    transition: 0.3s;
    background: #000;
}

.search-form-custom:focus-within {
    border-color: var(--kick-green);
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.2);
}

.search-field {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
}

.search-submit {
    background: var(--kick-green);
    border: none;
    width: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.2s;
}

.search-submit:hover {
    background: #fff;
}
/* --- SEARCH PAGE STYLES --- */

/* Header результатов */
.search-header-section {
    padding: 60px 0 30px;
    text-align: center;
    background: radial-gradient(circle at top, #1a1d24 0%, var(--bg-body) 100%);
    border-bottom: 1px solid var(--border);
}

.search-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.search-title .highlight {
    color: var(--kick-green);
    font-style: italic;
}

.search-meta {
    color: #888;
    font-size: 14px;
    font-family: monospace;
}

/* Блок "Ничего не найдено" */
.no-results-block {
    text-align: center;
    padding: 60px 20px;
    background: #121418;
    border-radius: 12px;
    border: 1px dashed #333;
    margin-top: 40px;
}

.no-res-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results-block h2 {
    color: #fff;
    margin-bottom: 10px;
}

.no-results-block p {
    color: #aaa;
}

/* Пагинация (Темная тема) */
.pagination-dark {
    margin: 50px 0;
    text-align: center;
}

.pagination-dark .nav-links {
    display: inline-flex;
    gap: 10px;
}

.pagination-dark a, .pagination-dark span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 15px;
    background: #191b1f;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.pagination-dark a:hover {
    border-color: var(--kick-green);
    color: var(--kick-green);
}

.pagination-dark .current {
    background: var(--kick-green);
    color: #000;
    border-color: var(--kick-green);
}
.hidden-streamer {
    display: none;/
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-load-more {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.btn-load-more:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.wins-ticker-track {
    animation: ticker-seamless 200s linear infinite; 
}