/* ===================== VARIABLES ===================== */

:root {
    --bg-main: #0d0d0d;
    --bg-card: #111;
    --bg-card-hover: #1a1a1a;

    --accent: #d4af37;
    --accent-hover: #f0d98c;

    --text-main: #ffffff;
    --text-secondary: #c7c7c7;

    --radius: 14px;
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.45);
    --shadow-strong: 0 10px 28px rgba(0,0,0,0.65);
}

/* ===================== GLOBAL ===================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.25s ease;
}

a:hover {
    color: var(--accent-hover);
}

.section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    color: var(--accent);
}

/* ===================== HEADER ===================== */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

/* NAV BUTTONS */

.nav {
    display: flex;
    gap: 16px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 10px;
    background: transparent;
    color: var(--text-main);
    transition: 0.25s ease;
}

.nav a:hover {
    background: rgba(212,175,55,0.12);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
    color: var(--accent);
}

.nav a.active {
    background: var(--accent);
    color: #000;
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}

/* BURGER */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.burger span {
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

/* MOBILE NAV */

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        box-shadow: var(--shadow-strong);
    }

    .nav.active {
        right: 0;
    }

    .burger {
        display: flex;
    }
}

/* ===================== HERO ===================== */

.hero-tv {
    padding-top: 160px;
    padding-bottom: 140px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.25), transparent 70%), #0d0d0d;
    position: relative;
    overflow: hidden;
}

.hero-tv-inner h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-tv-inner p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

/* HERO BUTTONS */

.hero-tv-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-tv {
    padding: 14px 32px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
    transition: 0.25s ease;
}

.btn-tv:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

.btn-tv-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-tv-outline:hover {
    background: var(--accent);
    color: #000;
}

/* ===================== SERVICES ===================== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.card-tv {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: 0.35s ease;
    border: 1px solid rgba(212,175,55,0.15);
    opacity: 0;
    transform: translateY(40px);
}

.card-tv.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-tv:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.card-tv img {
    width: 55px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

/* ===================== WHY ===================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-item {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: 0.35s ease;
    border: 1px solid rgba(212,175,55,0.15);
    opacity: 0;
    transform: translateY(40px);
}

.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.why-item img {
    width: 60px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

/* ===================== GALLERY ===================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
    border: 1px solid rgba(212,175,55,0.15);
    transition: 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.25s ease;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

/* ===================== REVIEWS ===================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: 0.35s ease;
    border: 1px solid rgba(212,175,55,0.15);
}

.review-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.review-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header h4 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--accent);
}

.stars {
    color: var(--accent);
    font-size: 16px;
}

.review-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

/* ===================== CONTACT ===================== */

.contact-info {
    text-align: center;
    margin-bottom: 35px;
    font-size: 19px;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(212,175,55,0.25);
    background: #000;
    color: var(--text-main);
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.btn-tv {
    background: var(--accent);
    color: #000;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.btn-tv:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ===================== FOOTER ===================== */

.footer {
    background: #000;
    padding: 50px 20px 25px;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.footer h3 {
    color: var(--accent);
}

.footer p,
.footer a {
    color: var(--text-secondary);
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    opacity: 0.6;
    font-size: 14px;
}
.seo-top {
    background: #111;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    padding: 30px 25px !important;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
}
.seo-top h1 {
    color: var(--accent);
    margin-bottom: 15px;
}
.seo-top p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}
/* ===================== CHANNELS PAGE (PREMIUM) ===================== */

.category {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.category h2 {
    font-size: 30px;
    margin-bottom: 22px;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(212,175,55,0.25);
}

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

.channel {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
    border: 1px solid rgba(212,175,55,0.15);
    opacity: 0;
    transform: translateY(30px);
}

.channel.visible {
    opacity: 1;
    transform: translateY(0);
}

.channel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.channel img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(1.15);
}

.channel span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}
// Каналы
document.querySelectorAll(".channel").forEach(ch => observer.observe(ch));
body {
    background: red !important;
}
/* ===================== CHANNELS FIX ===================== */

.channel {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    background: #111 !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;

    border: 1px solid rgba(212,175,55,0.25) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.45) !important;

    opacity: 1 !important;
    transform: translateY(0) !important;
}

.channel img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
    filter: brightness(1.25) !important;
}

.channel span {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.channel:hover {
    background: #1a1a1a !important;
    border-color: #d4af37 !important;
    transform: translateY(-4px) !important;
}
/* ========== CONTACT SECTION V2 ========== */
.contact {
    background: #0a0a0a;
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #FFD700;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Левая колонка */
.contact-left h3 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 16px;
}

.contact-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item svg {
    color: #FFD700;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item span {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-item p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

/* Правая колонка - Форма */
.contact-right {
    background: #141414;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #222;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0a0a0a;
    border: 2px solid #222;
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 10px 0 0 0;
}

/* Адаптив */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .contact-right {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.content {
  padding-top: 90px; /* высота твоей шапки + 10px отступ */
}