:root {
    --primary-color: #f7ca24;
    --secondary-color: #2b2b3a;
    --bg-color: #1a1a24;
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --card-bg: #222230;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 50px;
    /* Убираем старые фильтры, которые делали логотип темным */
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #e0b61c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    margin-left: 10px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
    background-color: var(--primary-color);
    color: #000;
    margin-top: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-color) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2em;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Features */
.features {
    padding: 80px 0;
}

.features h2, .info-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
    color: var(--primary-color);
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Info Section & Table */
.info-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--card-bg);
}

.info-table th {
    background-color: var(--primary-color);
    color: #000;
}

/* Footer Mega SEO */
.footer {
    background-color: var(--secondary-color);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--primary-color);
}

.footer-mega {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-bg);
    color: var(--text-muted);
    font-size: 0.9em;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
}

/* FAQ Accordion */
.faq-section {
    margin: 60px 0;
}

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

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

/* Pros and Cons */
.pros-cons {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.pros, .cons {
    flex: 1;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
}

.pros h3 {
    color: #4ade80;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cons h3 {
    color: #f87171;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros ul li, .cons ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.pros ul li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cons ul li::before {
    content: '✗';
    color: #f87171;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* In-text CTA */
.cta-inline {
    text-align: center;
    margin: 50px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(247, 202, 36, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    border: 1px dashed var(--primary-color);
}

.cta-inline h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.cta-inline p {
    margin-bottom: 25px;
}

.breadcrumbs {
    font-size: 0.9em;
    margin-bottom: 20px;
    color: var(--text-muted);
    width: 100%;
}
.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* E-E-A-T Disclaimer */
.eeat-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--text-muted);
    padding: 10px 15px;
    font-size: 0.85em;
    color: var(--text-muted);
    margin-bottom: 25px;
    border-radius: 0 4px 4px 0;
    width: 100%;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 15px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
    z-index: 999;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.sticky-mobile-cta .btn {
    width: 100%;
    margin: 0;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Space for sticky cta */
    }
    .sticky-mobile-cta {
        display: block;
    }
    .pros-cons {
        flex-direction: column;
    }
}
    .menu-toggle {
        display: flex;
    }
    .nav, .header-actions {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        flex-basis: 100%;
    }
    .nav.active, .header-actions.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .header-actions.active {
        flex-direction: row;
        justify-content: center;
        padding-bottom: 10px;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .info-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .footer-mega {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .footer-column:first-child {
        grid-column: span 2;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-mega {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column:first-child {
        grid-column: span 1;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .nav ul {
        gap: 10px;
    }
    .nav a {
        font-size: 0.9em;
    }
    .btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .header-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn-secondary {
        margin-left: 0;
    }
}