/* ===== ОСНОВНЫЕ НАСТРОЙКИ ===== */
:root {
    --primary-color: #b69e40;
    --primary-dark: #9a8330;
    --primary-light: #d4bc60;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg: #f2efed;
    --bg-color: #fafafa;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --border-color: #eaeaea;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --gold: #b69e40;
    --gold-light: #d4bc60;
    --gold-dark: #9a8330;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(182, 158, 64, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== КОНТЕЙНЕР ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ШАПКА ===== */
.header {
    position: relative;
    box-shadow: var(--shadow-sm);
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: var(--bg) ;
    border-bottom: 1px solid rgba(182, 158, 64, 0.2);
     width: 100%;
}

/* ===== ВЕРХНИЙ РЯД ===== */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0; 
}

/* ----- Колонка 1: Логотип ----- */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 2px;
}

.logo-icon {
    font-size: 42px;
    filter: drop-shadow(0 4px 10px rgba(182, 158, 64, 0.3));
    animation: float 3s ease-in-out infinite;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
}

.logo-name {
    color: var(--text);
    background: linear-gradient(135deg, #1A1A1A 0%, gold 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-domain {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    margin-left: 2px;
}

.logo-main {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-main .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
    
    margin-left: 50px;  /* Отступ под иконку + текст */
}

.logo-subtitle .highlight {
    color: #B69E40;
    font-weight: 600;
    position: relative;
}

.logo-subtitle .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #B69E40, transparent);
}

.logo-stats {
    display: flex;
    gap: 12px;
    background: linear-gradient(135deg, rgba(182, 158, 64, 0.1) 0%, rgba(182, 158, 64, 0.05) 100%);
    padding: 8px 15px;
    border-radius: 40px;
    border: 1px solid rgba(182, 158, 64, 0.2);
    backdrop-filter: blur(5px);
}

.stat-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-item:first-child {
    padding-right: 12px;
    border-right: 1px solid rgba(182, 158, 64, 0.3);
}

/* ----- Колонка 2: Реклама ----- */
/* Реклама */
.header-ad {
    flex: 1;
    max-width: 540px;
    height: 80px;
    margin: 0 auto;
}

.ad-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(202, 168, 133, 0.3);
    min-height: 90px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    color: #a49584;
    overflow: hidden;
}

/* ----- Колонка 3: Поиск и теги ----- */
.header-search {
    flex-shrink: 0;
    width: 240px;
}

.search-wrapper {
    margin-bottom: 12px;
}

.search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 14px 45px 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    transition: var(--transition);
    height: 44px;
    background: #F8F8F8;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(182, 158, 64, 0.1);
    background: var(--bg);
}

.search-button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-button:hover {
    color: var(--gold);
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== НИЖНИЙ РЯД ===== */
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 12px 0 16px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 6px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 40px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-item a:hover {
    color: var(--gold);
    background: rgba(182, 158, 64, 0.05);
}

.nav-item.active a {
    color: var(--gold);
    background: rgba(182, 158, 64, 0.1);
    font-weight: 600;
}

/* Индикатор активного пункта */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 5%;
}

.header-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.tag {
    padding: 4px 12px;
    background: #F5F5F5;
    border-radius: 40px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.tag:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 158, 64, 0.3);
    border-color: var(--gold-light);
}

/* Специальные цвета для тегов */
.tag[href*="notcoin"] {
    background: linear-gradient(135deg, #F5F5F7 0%, #EAEAEF 100%);
    color: #1A1A1A;
    border-left: 2px solid #8B5CF6;
    position: relative;
    overflow: hidden;
}

.tag[href*="notcoin"]:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    border-left-color: white;
}

.tag[href*="hamster"] {
    background: linear-gradient(135deg, #FFE4CC 0%, #FFD4B0 100%);
    color: #C2410C;
    border-top: 2px solid #F97316;
}

.tag[href*="hamster"]:hover {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    color: white;
}

.tag[href*="тапалки"] {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    color: #0369A1;
    border-right: 2px solid #b69e40;
}

.tag[href*="тапалки"]:hover {
    background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
    color: white;
}

.tag[href*="gamefi"] {
    background: linear-gradient(135deg, #E6E9FF 0%, #D1D9FF 100%);
    color: #4338CA;
    border-bottom: 2px solid #6366F1;
    letter-spacing: 0.3px;
}

.tag[href*="gamefi"]:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #818CF8 100%);
    color: white;
}

.tag[href*="ton"] {
    background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
    color: #01579B;
    border: 1px solid #0088CC;
    position: relative;
}

.tag[href*="ton"]::before {
    content: "⚡";
    margin-right: 4px;
    font-size: 12px;
    opacity: 0.7;
}

.tag[href*="ton"]:hover {
    background: linear-gradient(135deg, #0088CC 0%, #33AAFF 100%);
    color: white;
}

.tag[href*="bitcoin"] {
    background: linear-gradient(135deg, #FFF0E0 0%, #FFE0C0 100%);
    color: #B84900;
    border: 1px solid #F7931A;
}

.tag[href*="bitcoin"]:hover {
    background: linear-gradient(135deg, #F7931A 0%, #FFB347 100%);
    color: white;
}

.tag[href*="ethereum"] {
    background: linear-gradient(135deg, #F0E6FF 0%, #E0CCFF 100%);
    color: #37306B;
    border: 1px solid #627EEA;
}

.tag[href*="ethereum"]:hover {
    background: linear-gradient(135deg, #627EEA 0%, #8B9FFF 100%);
    color: white;
}

.tag[href*="airdrops"] {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #1B5E20;
    border-left: 2px solid #2E7D32;
}

.tag[href*="airdrops"]:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
}

/* ===== АНИМАЦИИ ДЛЯ ТЕГОВ ===== */
@keyframes tagPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.tag:active {
    animation: tagPop 0.2s ease;
}

/* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.breadcrumbs {
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-lighter);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumbs .delimiter {
    margin: 0 8px;
    color: var(--text-lighter);
}

/* ===== СЕТКА СТАТЬИ ===== */
.article-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin: 40px 0;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
article {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0 15px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-color);
    font-weight: 600;
}

h4 {
    font-size: 20px;
    margin: 25px 0 10px;
    color: var(--text-color);
    font-weight: 600;
}

/* ===== АВТОР ===== */
.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0 15px;
    padding: 15px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
}

.author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.author-bio {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== МЕТА-ИНФОРМАЦИЯ ===== */
.meta {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.meta a:hover {
    text-decoration: underline;
}

/* ===== ИЗОБРАЖЕНИЯ ===== */
.featured-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 25px 0 10px;
    box-shadow: var(--shadow-md);
}

figure {
    margin: 25px 0;
}

figcaption {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

/* ===== ВВЕДЕНИЕ ===== */
.article-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-gray);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ===== СОДЕРЖАНИЕ ===== */
.table-of-contents {
    background: var(--bg-gray);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.table-of-contents h2 {
    margin-top: 0;
    font-size: 24px;
}

.table-of-contents h2::after {
    width: 40px;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin: 8px 0;
}

.table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 3px 0;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.table-of-contents ul ul {
    margin-left: 20px;
}

/* ===== ОПРЕДЕЛЕНИЯ ===== */
.definition {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.definition h3 {
    margin-top: 0;
    color: var(--primary-dark);
    font-size: 22px;
}

.definition p {
    margin-bottom: 0;
}

/* ===== ТАБЛИЦЫ ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

thead {
    background: var(--primary-color);
    color: white;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background: var(--bg-gray);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* ===== ПРОГНОЗЫ ===== */
.prediction {
    background: var(--bg-white);
    padding: 30px;
    margin: 30px 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.prediction:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.prediction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.prediction:hover::before {
    opacity: 1;
}

.prediction h3 {
    margin-top: 0;
    font-size: 26px;
    color: var(--primary-dark);
}

.prediction ul {
    margin: 15px 0 15px 20px;
}

.prediction li {
    margin: 8px 0;
}

/* ===== МНЕНИЕ ЭКСПЕРТА ===== */
.expert-opinion {
    background: linear-gradient(135deg, #f8f4e8 0%, #f5f0e0 100%);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.expert-opinion p {
    margin: 0;
    font-size: 16px;
}

/* ===== FAQ ===== */
#faq {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

#faq [itemprop="mainEntity"] {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

#faq [itemprop="mainEntity"]:last-child {
    border-bottom: none;
}

#faq h3 {
    margin: 0 0 15px;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

#faq h3:hover {
    color: var(--primary-color);
}

#faq h3::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--primary-color);
    transition: var(--transition);
}

#faq h3[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

#faq [itemprop="acceptedAnswer"] {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== ЦИТАТЫ ===== */
.blockquote {
    background: var(--bg-gray);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    position: relative;
    border: 1px solid var(--border-color);
}

.blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===== КНОПКИ ПОДЕЛИТЬСЯ ===== */
.share-buttons {
    margin: 40px 0 20px;
    text-align: center;
}

.share-buttons h3 {
    margin-bottom: 20px;
}

.share-buttons a {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px 10px 0;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    background: var(--primary-color);
}

.share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--primary-dark);
}

.share-buttons a[href*="t.me"] {
    background: #0088cc;
}

.share-buttons a[href*="vk.com"] {
    background: #4a76a8;
}

.share-buttons a[href*="twitter.com"] {
    background: #1da1f2;
}

/* ===== КОММЕНТАРИИ ===== */
.comments {
    margin: 50px 0;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

/* ===== САЙДБАР ===== */
.sidebar {
    position: sticky;
    top: 10px;
    align-self: start;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin: 10px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.sidebar-widget li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-widget a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.sidebar-widget a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ===== БЛОК-ПОДСКАЗКА К САЙДБАРУ ===== */
.mobile-sidebar-anchor {
    display: flex;
    margin: 40px 0 30px;
    justify-content: center;
}

.mobile-sidebar-hint {
    background: linear-gradient(135deg, #F8F4E8 0%, #F5F0E0 100%);
    border-left: 4px solid #B69E40;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    animation: subtlePulse 2s ease-in-out infinite;
    border: 1px solid rgba(182, 158, 64, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(182, 158, 64, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(182, 158, 64, 0.2);
    }
}

.hint-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.hint-content {
    flex: 1;
}

.hint-arrow {
    font-size: 24px;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.hint-text {
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.hint-button {
    background: #B69E40;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hint-button:hover {
    background: #9A8330;
    transform: translateX(3px);
}

/* ===== ТЕГИ ===== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    background: var(--bg-gray);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tags a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== ПОДПИСКА ===== */
.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter input {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition);
}

.newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== РЕКОМЕНДАЦИИ (ПЕРЕД ПОДВАЛОМ) ===== */
.recommendations {
    background: #F8F8F8;
    padding: 50px 0;
    margin-top: 40px;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}

.recommendations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.recommendations-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.recommendations-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #B69E40;
    border-radius: 3px;
}

.recommendations-nav {
    display: flex;
    gap: 10px;
}

.rec-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #EAEAEA;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-nav-btn:hover {
    background: #B69E40;
    color: white;
    border-color: #B69E40;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.rec-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rec-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.rec-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rec-card:hover .rec-card-image img {
    transform: scale(1.05);
}

.rec-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #B69E40;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.rec-card-content {
    padding: 18px;
}

.rec-card-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.rec-card-content h3 a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rec-card-content h3 a:hover {
    color: #B69E40;
}

.rec-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

/* ===== ФУТЕР ===== */
.footer {
    background: #0A0A0A;
    color: #999;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Брендовая часть */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
}

.footer-logo-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #b69e40 0%, gold 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-domain {
    font-size: 24px;
    font-weight: 700;
    color: #B69E40;
    margin-left: 2px;
}

.footer-tagline {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.footer-description {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Социальные иконки */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #888;
}

.social-link:hover {
    background: #B69E40;
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Ссылки */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #B69E40;
}

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

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

.footer-column a {
    color: #888;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: #B69E40;
    padding-left: 5px;
}

/* Подписка */
.subscribe-text {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #B69E40;
}

.subscribe-form button {
    padding: 12px 18px;
    background: #B69E40;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subscribe-form button:hover {
    background: #9A8330;
    transform: translateX(3px);
}

.subscribe-note {
    font-size: 12px;
    color: #666;
}

/* Нижняя часть подвала */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #1A1A1A;
    font-size: 13px;
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-18plus {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-18plus span:first-child {
    background: #B69E40;
    color: #0A0A0A;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .header-ad {
        max-width: 400px;
    }
    
    .header-search {
         width: 200px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Планшеты */


@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header-top {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .header-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .header-ad {
        flex: 1 1 400px;
        min-width: 300px;
    }
    
    .header-search {
        min-width: 280px;
    }
    
    .header-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .nav {
        width: 100%;
        gap: 15px;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
    }
    
    .header-tags {
        justify-content: center;
        width: 100%;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .sidebar {
        order: 2;
    }
    
    .comments {
        order: 3;
    }
    
    .recommendations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* Мобильные устройства */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 10px; 
        padding: 12px 0;
    }
    
    .header-logo {
        justify-content: center;
        margin-bottom: 0;
    }
    
    .logo {
        gap: 8px; 
    }
    
    .logo-text {
        font-size: 22px; 
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .header-ad {
        width: 100%;
    }
    
    .ad-container {
        height: 70px;
    }
    
    .header-search {
        max-width: 540px;
        width: 100%;
        margin-top: 0;
        justify-content: center;
    }
    
    .header-bottom {
        gap: 15px;
    }
    
    .nav-menu {
        gap: 5px;
    }
    
    .nav-item a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .header-tags {
        gap: 6px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .article-grid {
        margin: 20px 0;
    }
    
    article {
        padding: 20px;
    }
    
    .prediction {
        padding: 20px;
    }
    
    .prediction h3 {
        font-size: 22px;
    }
    
    .meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .author {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        justify-content: center;
    }
    
    .nav a {
        font-size: 14px;
    }
    
    table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
    }
    
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .recommendations-title {
        font-size: 24px;
    }
    
    .rec-card-image {
        height: 200px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: left;
        padding: 20px;
    }
    
    .footer-column h4::after {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-18plus {
        justify-content: center;
    }
}

/* Маленькие мобильные */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .nav {
        flex-wrap: wrap;
    }
    
    .nav a {
        flex: 1 1 auto;
        text-align: center;
    }
    
    .meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .author {
        flex-direction: column;
        text-align: center;
    }
    
    .share-buttons a {
        display: block;
        margin: 10px 0;
    }
    
    .tags a {
        font-size: 12px;
        padding: 4px 10px;
    }
    
        .recommendations {
        padding: 40px 0;
    }
    
    .recommendations-title {
        font-size: 20px;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rec-card-image {
        height: 200px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .subscribe-form {
        max-width: 300px;
        margin: 0;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

article {
    animation: fadeIn 0.8s ease-out;
}

.prediction {
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.prediction:nth-child(1) { animation-delay: 0.1s; }
.prediction:nth-child(2) { animation-delay: 0.2s; }
.prediction:nth-child(3) { animation-delay: 0.3s; }
.prediction:nth-child(4) { animation-delay: 0.4s; }
.prediction:nth-child(5) { animation-delay: 0.5s; }
.prediction:nth-child(6) { animation-delay: 0.6s; }
.prediction:nth-child(7) { animation-delay: 0.7s; }
.prediction:nth-child(8) { animation-delay: 0.8s; }
.prediction:nth-child(9) { animation-delay: 0.9s; }
.prediction:nth-child(10) { animation-delay: 1s; }

/* ===== УТИЛИТЫ ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--primary-color);
    color: white;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===== РЕКЛАМА ===== */
#yandex_rtb_R-A-458425-1,
#yandex_rtb_R-A-458425-2,
#yandex_rtb_R-A-458425-3,
#yandex_rtb_R-A-458425-4,
#yandex_rtb_R-A-458425-5,
#yandex_rtb_R-A-458425-6,
#yandex_rtb_R-A-458425-7,
#yandex_rtb_R-A-458425-8,
#yandex_rtb_R-A-458425-9 {
    min-height: 250px;
    margin: 25px 0;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: 14px;
}

.srtb-tag-743399369 {
    min-height: 250px;
    margin: 20px 0;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

/* ===== ПЕЧАТЬ ===== */
@media print {
    .header,
    .sidebar,
    .footer,
    .share-buttons,
    .comments,
    #yandex_rtb_R-A-458425-1,
    #yandex_rtb_R-A-458425-2,
    #yandex_rtb_R-A-458425-3,
    #yandex_rtb_R-A-458425-4,
    #yandex_rtb_R-A-458425-5,
    #yandex_rtb_R-A-458425-6,
    #yandex_rtb_R-A-458425-7,
    #yandex_rtb_R-A-458425-8,
    #yandex_rtb_R-A-458425-9,
    .srtb-tag-743399369 {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    article {
        box-shadow: none;
        padding: 0;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}