/* Позиция баннера в hero: по горизонтали в % (0% = влево, 100% = вправо) */
:root {
    --hero-bg-position-x: 90%;
}
.hero-banner-bg {
    background-position: var(--hero-bg-position-x) center;
}

/* Custom Scrollbar for Dark Theme */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d1a656; 
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Specific OscarSpin Styles */
.btn-green {
    background-color: #1d9e48;
    color: white;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(29, 158, 72, 0.3);
}
.btn-green:hover { 
    background-color: #16803a; 
    box-shadow: 0 6px 20px rgba(29, 158, 72, 0.5);
    transform: translateY(-1px);
}

.btn-gray {
    background-color: #3f3f3f;
    color: white;
    transition: all 0.2s;
}
.btn-gray:hover {
    background-color: #4f4f4f;
}

.nav-pill {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 4px;
    display: flex;
    align-items: center;
}

.nav-pill-item {
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    transition: all 0.3s;
}

.nav-pill-item.active {
    background: #333;
    color: white;
}
.nav-pill-item:hover:not(.active) {
    color: white;
}

.sidebar-icon {
    color: #888;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 8px;
    font-size: 18px;
}
.sidebar-icon:hover, .sidebar-icon.active {
    color: #d1a656;
    background: rgba(209, 166, 86, 0.1);
}
.sidebar-icon.active {
    border-left: 3px solid #d1a656;
    border-radius: 0 8px 8px 0;
}

/* Gold Text Gradient */
.text-gold-gradient {
    background: linear-gradient(180deg, #f7ef8a 0%, #d1a656 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Payment Strip */
.payment-strip {
    background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 50%, #d2ac47 100%);
}

/* Footer Links */
.footer-link {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-link:hover { color: #d1a656; }

.hero-image-container {
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* Float Animation for Hero Image */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* --- SEO CONTENT STYLES (AUTOMATIC SELECTORS) --- */
.seo-content {
    color: #999;
    font-size: 13px;
    line-height: 1.7;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.seo-content h1 {
    font-size: 26px;
    font-weight: 900;
    color: #d1a656;
    margin: 0 0 25px 0;
    padding: 20px 24px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(209, 166, 86, 0.12) 0%, rgba(176, 141, 69, 0.06) 100%);
    border-left: 4px solid #d1a656;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
/* Headers */
.seo-content h2, .seo-content h3 {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.seo-content h2 { font-size: 20px; color: #d1a656; border-bottom: 1px solid #333; padding-bottom: 10px; }
.seo-content h3 { font-size: 16px; color: #e0e0e0; }

/* Paragraphs & Strong */
.seo-content p { margin-bottom: 20px; }
.seo-content strong { color: #d1a656; font-weight: 700; }

/* List Style 1: Unordered (Gold Stars) */
.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.seo-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #bbb;
}
.seo-content ul li::before {
    content: '\f005'; /* FontAwesome Star */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #d1a656;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
}

/* List Style 2: Ordered (Gold Numbers) */
.seo-content ol {
    list-style: none;
    padding-left: 0;
    counter-reset: seo-counter;
    margin-bottom: 25px;
}
.seo-content ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #bbb;
}
.seo-content ol li::before {
    counter-increment: seo-counter;
    content: counter(seo-counter);
    color: #050505;
    background: #d1a656;
    font-weight: 800;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 1px;
}

/* Table Style - Dark Theme */
.seo-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    font-size: 12px;
    background: #121212;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}
.seo-content th {
    background: linear-gradient(180deg, #1f1f1f 0%, #151515 100%);
    color: #d1a656;
    font-weight: 700;
    text-align: left;
    padding: 14px 20px;
    border-bottom: 2px solid #2a2a2a;
    text-transform: uppercase;
    font-size: 11px;
}
.seo-content td {
    border-bottom: 1px solid #222;
    padding: 12px 20px;
    color: #ccc;
}
.seo-content tr:last-child td { border-bottom: none; }
.seo-content tr:hover td {
    background-color: #1a1a1a;
    color: #fff;
}

/* Mobile: лёгкий оверлей, чтобы баннер был виден; затемнение снизу для читаемости текста */
.mobile-hero-bg {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.card-gold-border {
    border: 1px solid #b08d45;
    box-shadow: inset 0 0 10px rgba(176, 141, 69, 0.2);
}
