:root {
    --bg-main: #1a1f2e;
    --bg-dark: #16213e;
    --bg-white: #2d3748;
    --primary-darkblue: #0f1419;
    --accent-orange: #ff9500;
    --accent-yellow: #ffd700;
    --orange-gradient: linear-gradient(135deg, #ff9500 0%, #ffb347 50%, #ffd700 100%);
    --text-orange: #ffd700;
    --text-yellow: #ffcc00;
    --text-muted: #a0aec0;
    --border: #4a5568;
    --success: #51cf66;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-main);
    color: var(--text-orange);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    position: fixed; top: 0; width: 100%; height: 70px;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo-wrap { 
    display: flex; align-items: center; gap: 10px; text-decoration: none; 
}
.logo-text { 
    font-family: 'Playfair Display', serif; 
    color: var(--text-yellow); 
    font-size: 20px; 
    font-weight: 900; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.header-tagline {
    font-size: 12px; 
    font-weight: 700; 
    color: var(--accent-orange);
    text-shadow: 0 0 5px rgba(255, 149, 0, 0.5);
}

/* --- HERO --- */
.hero { 
    padding: 90px 20px 20px; 
    text-align: center; 
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-main));
}
.hero h1 { 
    font-family: "Funnel Sans", sans-serif;
    font-weight: 750;
    font-optical-sizing: auto; 
    color: var(--text-yellow); 
    margin-bottom: 10px;
}
.hero p { 
    color: var(--text-muted); 
    font-size: 1.1rem; 
    max-width: 800px; 
    margin: 0 auto; 
}

/* --- BONUS LIST --- */
.bonus-container { max-width: 1100px; margin: 0 auto; padding: 20px; }

.bonus-row {
    background: var(--bg-white);
    border-radius: 20px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 160px 1fr 200px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bonus-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 20, 25, 0.4);
    border-color: var(--accent-orange);
}

.brand-box {
    width: 120px; height: 120px;
    background: var(--bg-dark);
    border-radius: 15px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 2px dashed var(--text-muted);
    overflow: hidden;
    position: relative;
}
.brand-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--orange-gradient);
    opacity: 0.1;
}
.img-label { 
    font-size: 10px; 
    color: var(--text-orange); 
    text-transform: uppercase; 
    margin-top: 5px;
    z-index: 1;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
}

.bonus-details { padding: 0 30px; }
.brand-name { 
    font-size: 1.4rem; 
    font-weight: 800; 
    color: #FFF5EE; 
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.bonus-promo { 
    font-size: 1.05rem; 
    color: var(--accent-orange); 
    font-weight: 700; 
    margin-bottom: 15px; 
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(255, 149, 0, 0.6);
}

.specs-grid { display: flex; gap: 25px; flex-wrap: wrap; }
.spec-item { display: flex; flex-direction: column; }
.spec-label { 
    font-size: 11px; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
.spec-value { 
    font-size: 14px; 
    font-weight: 700; 
    color: var(--text-orange); 
}

.cta-wrap { display: flex; flex-direction: column; gap: 10px; }
.btn-play {
    background: var(--orange-gradient);
    color: #000;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-play:hover { 
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 149, 0, 0.6);
    filter: brightness(1.1);
}
.visit-link { 
    text-align: center; 
    font-size: 11px; 
    color: var(--text-muted); 
    text-decoration: underline; 
}


.seo-content { 
    max-width: 900px; 
    margin: 60px auto; 
    padding: 0 20px; 
    color: #FFF5EE;
}
.seo-content h2 { 
    font-family: "Funnel Sans", sans-serif;
    font-weight: 750;
    font-optical-sizing: auto; 
    color: var(--text-yellow);
    margin-bottom: 20px;
}

.adaptive-img-container {
    width: 100%;
    margin: 40px 0;
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.adaptive-img-container img { width: 100%; height: auto; display: block; }
.img-caption { 
    padding: 12px; 
    text-align: center; 
    font-size: 12px; 
    color: var(--text-muted); 
    background: var(--bg-white); 
}

footer { 
    background: var(--primary-darkblue); 
    color: var(--text-yellow); 
    padding: 60px 20px; 
    text-align: center; 
}
.footer-badges { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 20px; 
    opacity: 0.8; 
    color: var(--accent-orange);
}


.faq-section { 
    padding: 60px 20px; 
    background: var(--bg-white); 
}

.faq-title { 
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--text-yellow);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* container FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* one point FAQ */
.faq-item {
    background: var(--bg-main);
    border-radius: 16px;
    border: 1px solid rgba(255, 149, 0, 0.25);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 20, 25, 0.6);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.faq-item[open] {
    border-color: var(--accent-orange);
    box-shadow: 0 14px 30px rgba(255, 149, 0, 0.25);
    transform: translateY(-1px);
}

/* Question */
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-orange);
    font-weight: 700;
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Question text */
.faq-question {
    flex: 1;
    font-size: 15px;
}

/* Icon */
.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 149, 0, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-orange);
    transition: transform 0.2s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

/* plus to min */
.faq-item[open] .faq-icon::after {
    transform: scaleY(0);
}

/* Hover */
.faq-item summary:hover {
    background: rgba(255, 149, 0, 0.06);
    color: var(--accent-orange);
}

/* answer */
.faq-content {
    padding: 0 20px 18px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 600px) {
    .faq-title { font-size: 24px; }
    .faq-item summary { padding: 14px 16px; }
    .faq-content { padding: 0 16px 14px 16px; }
}


.adaptive-img-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
}
.img-wrapper { background: var(--bg-dark); }
.img-label {
    color: var(--text-muted);
    background: var(--bg-main);
}
.img-label strong { color: var(--accent-orange); }

/* Mobile */
@media (max-width: 850px) {
    .bonus-row { grid-template-columns: 1fr; text-align: center; padding: 30px 20px; gap: 20px; }
    .brand-box { margin: 0 auto; }
    .specs-grid { justify-content: center; gap: 15px; }
    .bonus-details { padding: 0; }
}
@media (max-width: 600px) {
    .faq-title { font-size: 24px; }
    .faq-item summary { font-size: 1rem; }
}
@media (max-width: 768px) {
    .adaptive-img-box { border-radius: 0; margin: 20px 0; border-left: none; border-right: none; }
}
/* --- TABLES --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 20, 25, 0.45);
}

thead {
    background: linear-gradient(135deg, #141824 0%, #222b3f 50%, #2f3b55 100%);
}

thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--text-yellow);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

tbody tr {
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

tbody tr:nth-child(odd) {
    background: rgba(15, 20, 25, 0.85);
}

tbody tr:nth-child(even) {
    background: rgba(26, 31, 46, 0.95);
}

tbody tr:hover {
    background: rgba(255, 149, 0, 0.10);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(74, 85, 104, 0.8);
    color: #FFF5EE;
    font-size: 14px;
}

tbody tr:last-child td {
    border-bottom: none;
}


td[data-cell="number"],
td[data-cell="percent"] {
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: var(--text-orange);
}

/* --- BULLET LISTS: CLUBS --- */
ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

ul li {
    position: relative;
    padding-left: 1.8em;
    margin: 0.4em 0;
    color: var(--text-muted);
}

ul li::marker {
    content: '';
}

ul li::before {
    content: "♣";
    position: absolute;
    left: 0;
    top: 0.10em;
    font-size: 1.1em;
    color: var(--accent-orange);
    text-shadow: 0 0 8px rgba(255, 149, 0, 0.7);
}


.seo-content ul li,
.faq-section ul li {
    color: #e2e8f0;
}

.seo-content ul li::before,
.faq-section ul li::before {
    color: var(--accent-yellow);
}
/* --- AUTHOR BLOCK (Compact) --- */
.author-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px auto 20px;  
    padding: 12px 18px;     
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 149, 0, 0.2);
    max-width: 450px;        /* Немного уже */
    box-shadow: 0 6px 20px rgba(15, 20, 25, 0.5);
}

.author-avatar {
    width: 48px !important;
    height: 48px !important;  
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.4);
    flex-shrink: 0;
    display: flex;          
    align-items: center;
    justify-content: center;
    background: var(--bg-dark); /* fallback */
}

.author-avatar img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;      
    display: block;
}


.author-name {
    font-size: 15px;        
    margin-bottom: 0;       
    letter-spacing: -0.01em;
}

.author-date {
    font-size: 12px;      
}

/* Mobile */
@media (max-width: 600px) {
    .author-block {
        gap: 10px;
        padding: 14px 16px; 
        margin: 12px auto 18px;
    }
}
