/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #1a1a1a;
    --accent-color: #2E7D32;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --border-color: #333;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #f44336;
    --header-height: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #FFA000);
    color: var(--secondary-color);
}

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-white {
    background: white;
    color: var(--secondary-color);
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Заголовки */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Скрытие кнопки бургер меню на мобильной версии */
.mobile-menu-toggle {
    display: none !important;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Сайдбар */
.sidebar {
    display: none !important;
    position: fixed;
    left: -300px;
    top: var(--header-height);
    width: 300px;
    height: calc(100vh - var(--header-height));
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 1rem;
}

.sidebar-menu a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

/* Основной контент */
.main-content {
    margin-top: var(--header-height);
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

/* Главный баннер - Новый дизайн */
.hero {
    position: relative;
    min-height: 700px;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(10, 10, 10, 0.7) 100%),
        url('../img/back-ground-image.webp') center/cover no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%),
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(34, 197, 94, 0.05) 100%
    );
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #f59e0b);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, var(--primary-color), #f59e0b);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-outline.btn-hero {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline.btn-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.hero-card.live {
    border-left: 4px solid #f44336;
}

.hero-card.upcoming {
    border-left: 4px solid #2196f3;
}

.hero-card.esports {
    border-left: 4px solid #9c27b0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.live-indicator {
    color: #f44336;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.time-indicator {
    color: #2196f3;
    font-weight: 600;
}

.card-sport {
    color: rgba(255, 255, 255, 0.7);
}

.card-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.team {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vs {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    padding: 0 0.5rem;
}

.score {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.vs {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-odds {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.hero-card .odds-btn {
    flex: 1;
    padding: 0.5rem;
    background: rgba(58, 58, 58, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-card .odds-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* Промо блоки */
.promo-blocks {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.promo-card {
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.promo-card.blue {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
}

.promo-card.green {
    background: linear-gradient(135deg, var(--accent-color), #66BB6A);
}

.promo-card.red {
    background: linear-gradient(135deg, #D32F2F, #EF5350);
}

.promo-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.promo-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Популярные виды спорта */
.popular-sports {
    padding: 4rem 0;
    background: var(--bg-dark);
}

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

.sport-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sport-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sport-card p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.sport-stats {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Как делать ставки */
.how-to-bet {
    padding: 4rem 0;
    background: var(--bg-card);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Стратегии */
.strategies {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.strategy-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.strategy-pros {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Бонусы */
.bonuses {
    padding: 4rem 0;
    background: var(--bg-card);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bonus-type {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.bonus-features li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: background-color 0.3s ease;
    user-select: none;
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.5;
    padding-right: 4rem; /* Место для знака + */
    min-height: 70px;
    display: flex;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: bold;
    pointer-events: none;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Дополнительные стили для отладки */
.faq-item:not(.active) .faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Форма обратной связи */
.contact-form {
    padding: 4rem 0;
    background: var(--bg-card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    color: var(--primary-color);
    display: inline-block;
    width: 120px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

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

.contact-form-wrapper {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Заглушка контента */
.content-placeholder {
    padding: 4rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.placeholder-content {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.placeholder-content p {
    opacity: 0.7;
    font-style: italic;
}

/* Футер */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

/* Адаптивность для больших экранов */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .article-body {
        max-width: 1600px;
    }
    
    .faq-list {
        max-width: 1200px;
    }
    
    .hero-text {
        max-width: 800px;
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .slide-content,
    .slide-image {
        max-width: 100%;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-slide {
        padding: 1.5rem;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .sports-grid,
    .steps-grid,
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 100%;
        left: -100%;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .header-right {
        gap: 0.5rem;
    }
    
    .hero-slide h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sport-card,
    .strategy-card,
    .bonus-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* JavaScript functionality styles */
.hero-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg-card);
}

/* Placeholder images */
.slide-image::before {
    content: "🏈";
    font-size: 8rem;
    display: block;
    text-align: center;
    line-height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #FFA000);
    border-radius: 10px;
    color: var(--secondary-color);
}

/* Мобильные улучшения */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
    }
    
    .slide-image::before {
        font-size: 4rem;
        line-height: 200px;
    }
    
    .hero-nav {
        display: none;
    }
    
    .promo-card {
        min-height: 150px;
        padding: 1.5rem;
    }
    
    .promo-content h2 {
        font-size: 1.2rem;
    }
}

/* Дополнительные стили для корректного отображения */
.hero-slide:not(.active) {
    display: none;
}

/* Улучшения для форм */
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

/* Исправления для мобильной навигации */
@media (max-width: 1200px) {
    .header-left {
        gap: 1rem;
    }
    
    .sidebar-content {
        padding: 1.5rem;
    }
}

/* Предотвращение горизонтального скролла */
body, html {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    overflow-x: hidden;
}

/* Исправления для мобильных устройств */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    /* Исправления для hero секции */
    .hero-slide {
        padding: 1rem;
    }
    
    .slide-content {
        max-width: 100%;
    }
    
    /* Исправления для промо блоков */
    .promo-grid {
        padding: 0 10px;
    }
    
    /* Исправления для карточек */
    .sports-grid,
    .steps-grid,
    .strategies-grid {
        padding: 0 10px;
    }
    
    /* Исправления для форм */
    .contact-content {
        padding: 0 10px;
    }
}

/* Дополнительные мобильные исправления */
@media (max-width: 480px) {
    .hero-slide h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-slide p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Мобильный хедер */
    .header-right .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .logo-img {
        height: 35px;
    }
}

/* Статья - Новый интерактивный дизайн */
.article {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* Hero секция статьи */
.article-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.article-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.article-stats {
    display: flex;
    gap: 2rem;
}

.article-stats .stat-item {
    text-align: center;
}

.article-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.article-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Основное тело статьи */
.article-body {
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Двухколоночные заголовки */
.section-headers-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 2rem 0;
    align-items: center;
}

.section-headers-dual h3 {
    margin: 0;
    line-height: 1.3;
}

.header-left h3, .header-right h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin: 0;
}

/* Двухколоночный контент */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-left p, .content-right p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

/* Выделенные блоки */
.highlight-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.highlight-box strong {
    color: var(--primary-color);
}

/* Заголовок с изображением */
.section-header-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0 2rem 0;
}

/* Полноширинный заголовок секции */
.section-header-full {
    margin: 3rem 0 2rem 0;
    text-align: left;
}

.section-header-full h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header-full p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.section-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Плейсхолдеры для изображений */
.image-placeholder, .section-image-placeholder .image-placeholder {
    background: rgba(42, 42, 42, 0.8);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.image-placeholder p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
}

/* Интерактивный калькулятор */
.interactive-calculator, .bonus-calculator {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.interactive-calculator h4, .bonus-calculator h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.calculator-content, .bonus-calc-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-inputs {
    display: flex;
    gap: 1rem;
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    background: rgba(50, 50, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.currency {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 1.5rem;
}

.calc-result, .bonus-result {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    padding: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.result-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.result-value.profit {
    color: #2ecc71;
}

.result-value.bonus {
    color: var(--primary-color);
}

.result-value.total {
    color: #3498db;
}

/* Обычные заголовки и параграфы */
.article-body h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Преимущества криптовалют */
.crypto-advantages {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 42, 42, 0.6);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(52, 52, 52, 0.8);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.advantage-crypto-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    filter: brightness(1.2) contrast(1.1);
}

.advantage-icon {
    font-size: 1.2rem;
}

/* Условия бонусов */
.bonus-conditions {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.bonus-conditions h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.bonus-conditions ul {
    margin: 0;
    padding-left: 1.5rem;
}

.bonus-conditions li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

/* Информация об экспресс бонусах */
.express-bonus-info {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.express-bonus-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.express-bonus-grid {
    display: flex;
    gap: 1rem;
}

.express-item {
    background: rgba(50, 50, 50, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    flex: 1;
}

.express-count {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.express-bonus {
    display: block;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Гид по регистрации */
.registration-guide {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.registration-guide h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-item {
    background: rgba(50, 50, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    flex: 1;
    transition: all 0.3s ease;
}

.step-item.active {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content h5 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.registration-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.reg-option {
    background: rgba(70, 70, 70, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.reg-option.active, .reg-option:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.registration-time {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 8px;
}

.registration-time strong {
    color: var(--primary-color);
}

/* Мобильная адаптивность для статьи */
@media (max-width: 768px) {
    .article-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .article-intro h2 {
        font-size: 2.2rem;
    }
    
    .article-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .section-headers-dual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calc-inputs {
        flex-direction: column;
    }
    
    .crypto-advantages {
        flex-direction: column;
    }
    
    .express-bonus-grid {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .registration-options {
        justify-content: center;
    }
}

/* Спорт 24/7 - Новый дизайн */
.sport-247 {
    padding: 4rem 0;
    background: #1a1a1a;
}

.sport-247-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.expand-all-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expand-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sport-express-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.sport-express-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.sport-express-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.sport-express-card:hover::before {
    left: 100%;
}

.sport-express-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(58, 58, 58, 0.9);
}

.express-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.express-icon.golden {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.express-icon.red {
    background: linear-gradient(135deg, #ff4757, #ff6b7d);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.express-icon.green {
    background: linear-gradient(135deg, #2ed573, #7bed9f);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.3);
}

.express-icon.dice {
    background: linear-gradient(135deg, #ff6348, #ff9ff3);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 99, 72, 0.3);
}

.express-content {
    flex: 1;
}

.express-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.express-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.express-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.express-badge.new {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Топ событий - Новый дизайн */
.top-events {
    padding: 4rem 0;
    background: #0f0f0f;
}

.top-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.view-all-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.top-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.top-event-card {
    position: relative;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.top-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.top-event-card:hover::before {
    left: 100%;
}

.top-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(40, 40, 40, 0.95);
}

.event-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.event-badge.live {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    animation: pulse-live 2s infinite;
}

.event-badge.upcoming {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.4);
}

@keyframes pulse-live {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.event-sport-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-sport-header .sport-icon {
    font-size: 1.3rem;
    opacity: 0.9;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.sport-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-match-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    gap: 1.5rem;
}

.team-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.team-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(5px);
}

.team-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.match-vs, .match-score {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-shrink: 0;
}

.match-score {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.2);
}

.event-odds-compact {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.odds-compact-btn {
    background: rgba(50, 50, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 55px;
    backdrop-filter: blur(5px);
}

.odds-compact-btn:hover {
    background: rgba(70, 70, 70, 0.9);
    border-color: rgba(255, 215, 0, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.odds-compact-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), #e6ac00);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.odds-compact-btn.primary:hover {
    background: linear-gradient(135deg, #ffed4e, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Логотипы команд - Стильные фоны */
.team-logo-mini {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 0.5rem;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.team-logo-mini:hover {
    transform: scale(1.1) translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    filter: brightness(1.3) contrast(1.2);
}

.team-logo-avatar {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.team-logo-avatar:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.12));
    border-color: var(--primary-color);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-card .team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.hero-card .team:hover {
    transform: translateX(2px);
}

.hero-card .team span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

/* Адаптация аватаров команд в топ событиях */
.team-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-avatar:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    transform: scale(1.05);
}

/* Оптимизация загрузки изображений */
.team-logo-mini,
.team-logo-avatar {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    loading: lazy;
    will-change: transform;
}

/* Анимации при загрузке логотипов */
.team-logo-mini,
.team-logo-avatar {
    opacity: 0;
    animation: fadeInLogo 0.3s ease-in-out forwards;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Улучшенные стили для контейнеров логотипов */
.team-logo-small {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 0.5rem;
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.team-logo-small:hover {
    transform: scale(1.05) translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 215, 0, 0.08));
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.team-placeholder-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #e6ac00);
    color: #000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Мобильная адаптивность для логотипов */
@media (max-width: 768px) {
    .team-logo-mini {
        width: 20px;
        height: 20px;
    }
    
    .team-logo-avatar {
        width: 38px;
        height: 38px;
    }
    
    .team-avatar {
        width: 40px;
        height: 40px;
    }
    
    .team-logo-small {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .team-logo-mini {
        width: 18px;
        height: 18px;
    }
    
    .team-logo-avatar {
        width: 34px;
        height: 34px;
    }
    
    .team-avatar {
        width: 36px;
        height: 36px;
    }
    
    .team-logo-small {
        width: 22px;
        height: 22px;
    }
}

/* Логотипы игр (CS2, Dota 2) - Стильные фоны */
.game-logo-mini {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 0.3rem;
    border-radius: 6px;
    padding: 2px;
    vertical-align: middle;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.game-logo-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 0.5rem;
    border-radius: 8px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.game-logo-tournament {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 0.75rem;
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.game-logo-mini:hover,
.game-logo-small:hover,
.game-logo-tournament:hover,
.event-sport-header .sport-icon:hover {
    transform: scale(1.1) translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    filter: brightness(1.3) contrast(1.2);
}

/* Изображение криптовалют */
.crypto-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.crypto-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Адаптация для спортивных заголовков */
.event-sport-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-sport {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.tournament-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* Мобильная адаптивность для игровых логотипов */
@media (max-width: 768px) {
    .game-logo-mini {
        width: 14px;
        height: 14px;
        padding: 2px;
    }
    
    .game-logo-small {
        width: 20px;
        height: 20px;
        padding: 2px;
    }
    
    .event-sport-header .sport-icon {
        width: 20px;
        height: 20px;
        padding: 2px;
        font-size: 1.1rem;
    }
    
    .game-logo-tournament {
        width: 28px;
        height: 28px;
        padding: 3px;
    }
    
    .team-logo-mini {
        width: 20px;
        height: 20px;
        padding: 3px;
    }
    
    .team-logo-avatar {
        width: 38px;
        height: 38px;
        padding: 4px;
    }
    
    .team-logo-small {
        width: 24px;
        height: 24px;
        padding: 3px;
    }
    
    .crypto-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .game-logo-mini {
        width: 12px;
        height: 12px;
        padding: 1px;
    }
    
    .game-logo-small {
        width: 18px;
        height: 18px;
        padding: 2px;
    }
    
    .game-logo-tournament {
        width: 24px;
        height: 24px;
        padding: 2px;
    }
    
    .team-logo-mini {
        width: 18px;
        height: 18px;
        padding: 2px;
    }
    
    .team-logo-avatar {
        width: 34px;
        height: 34px;
        padding: 3px;
    }
    
    .team-logo-small {
        width: 22px;
        height: 22px;
        padding: 2px;
    }
    
    .crypto-image {
        max-width: 200px;
    }
}

/* Флаги стран для волейбола */
.country-flag {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.country-flag:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Флаги игроков для тенниса */
.player-flag {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.player-flag:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Мобильная адаптивность для флагов */
@media (max-width: 768px) {
    .country-flag {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    
    .player-flag {
        font-size: 18px;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .country-flag {
        font-size: 18px;
        width: 22px;
        height: 22px;
    }
    
    .player-flag {
        font-size: 16px;
        width: 22px;
        height: 22px;
    }
}

/* Дополнительные мобильные стили для симметрии */
@media (max-width: 768px) {
    .card-match {
        gap: 1.5rem;
    }
    
    .event-match-compact {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .card-match {
        gap: 1rem;
    }
    
    .event-match-compact {
        gap: 0.75rem;
    }
    
    .team-compact {
        gap: 0.5rem;
    }
    
    .tournament-header {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .event-sport-header {
        gap: 0.5rem;
    }
}

/* Цветовые акценты для разных видов спорта */
.top-event-card.esports:hover {
    border-color: rgba(138, 43, 226, 0.4);
}

.top-event-card.football:hover {
    border-color: rgba(46, 204, 113, 0.4);
}

.top-event-card.basketball:hover {
    border-color: rgba(230, 126, 34, 0.4);
}

/* Компактные бонусные карточки */
.bonuses-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonuses-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-cards-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.bonus-cards-three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 400px;
}

.bonus-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bonus-image-column .promo-codes-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    margin: 0;
    border: 2px solid rgba(255, 215, 0, 0.15);
}

.bonus-image-column .promo-codes-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.bonus-card-compact {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bonus-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-color);
}

.bonus-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-header-compact .bonus-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-header-compact .bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bonus-card-compact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.bonus-card-compact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bonus-features-compact {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.bonus-features-compact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.bonus-features-compact li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bonus-card-compact .bonus-features-compact {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-card-compact .btn-compact {
    margin-top: auto;
}

.btn-compact {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Мобильная адаптивность для бонусов */
@media (max-width: 768px) {
    .bonuses-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .bonus-cards-inline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bonus-cards-three-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        align-items: start;
    }
    
    .bonus-image-column {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .bonus-card-compact {
        height: auto;
    }
    
    .bonus-card-compact {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .bonuses-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .bonuses-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .bonus-card-compact {
        padding: 1rem;
    }
    
    .bonus-header-compact .bonus-amount {
        font-size: 1.3rem;
    }
}

/* Игры 24/7 - Новый дизайн */
.games-247 {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.games-247-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.show-all-btn {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.show-all-btn:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-card {
    position: relative;
    background: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-color);
}

/* Нейтральные градиентные фоны для разных игр */
.game-card.points-game {
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a, #2a2a2a);
}

.game-card.twist-game {
    background: linear-gradient(135deg, #5a5a5a, #4a4a4a, #3a3a3a);
}

.game-card.hockey-game {
    background: linear-gradient(135deg, #6a6a6a, #5a5a5a, #4a4a4a);
}

.game-card.football-game {
    background: linear-gradient(135deg, #555555, #454545, #353535);
}

.game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    z-index: 10;
}

.game-badge.new {
    background: #ff4757;
    color: white;
}

.game-badge.blitz {
    background: rgba(255, 255, 255, 0.9);
    color: #2a2a2a;
}

.game-image-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: rgba(0, 0, 0, 0.2);
    margin: 12px;
    border-radius: 12px;
    position: relative;
}

.game-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin: 12px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.game-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image-full {
    transform: scale(1.05);
}

.game-info {
    padding: 1rem 1.25rem 1.25rem;
    color: white;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.game-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
}

/* Hover эффекты */
.game-card:hover .game-badge {
    transform: scale(1.05);
}

.game-card:hover .game-title {
    color: #fff;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .games-247 {
        padding: 3rem 0;
    }
    
    .games-247-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
    }
    
    .game-card {
        min-height: 180px;
    }
    
    .game-info {
        padding: 0.75rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .games-247 {
        padding: 2rem 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.75rem;
    }
    
    .game-card {
        min-height: 160px;
    }
    
    .game-title {
        font-size: 1rem;
    }
    
    .game-subtitle {
        font-size: 0.8rem;
    }
    
    .game-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

/* Стили для новых изображений LAKI */
.interface-screenshot {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.interface-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.promo-codes-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    margin: 2rem auto;
    display: block;
    border: 2px solid rgba(255, 215, 0, 0.15);
}

.promo-codes-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.registration-form-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.registration-form-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Мобильная адаптивность для новых изображений */
@media (max-width: 768px) {
    .interface-screenshot {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .promo-codes-image {
        max-width: 100%;
        margin: 1.5rem auto;
        border-radius: 8px;
    }
    
    .registration-form-image {
        max-width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .interface-screenshot,
    .promo-codes-image,
    .registration-form-image {
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .promo-codes-image {
        margin: 1rem auto;
    }
}



/* Актуальные события */
.live-events {
    padding: 4rem 0;
    background: var(--bg-card);
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-filters {
    display: flex;
    gap: 0.5rem;
}

.live-filter {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.live-filter:hover,
.live-filter.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.live-matches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.match-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    align-items: center;
    padding: 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.match-row:hover {
    border-color: var(--primary-color);
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.match-league {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.league-flag {
    font-size: 1rem;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.team-name {
    color: var(--text-color);
}

.vs {
    color: var(--primary-color);
    font-weight: normal;
}

.match-time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.match-odds {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.odds-button {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: 60px;
}

.odds-button span {
    color: var(--primary-color);
    font-weight: 600;
}

.odds-button.more {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.odds-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.odds-button:hover span {
    color: var(--secondary-color);
}

.match-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.match-video,
.match-stats {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.match-video:hover,
.match-stats:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.load-more {
    text-align: center;
}

/* Мобильная адаптивность для новых блоков */
@media (max-width: 768px) {
    .sport-247-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .sport-express-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sport-express-card {
        padding: 1rem;
    }
    
    .express-title {
        font-size: 1.1rem;
    }
    
    .top-events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .top-event-card {
        padding: 1rem;
    }
    
    .team-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .odds-compact-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .event-match {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team {
        justify-content: center;
        text-align: center;
    }
    
    .vs-divider {
        margin: 0;
    }
    
    .live-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .live-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .match-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .match-odds {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sport-categories {
        gap: 0.5rem;
    }
    
    .sport-category {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .express-card {
        padding: 0.75rem;
    }
    
    .event-card {
        padding: 1rem;
    }
    
    .match-row {
        padding: 0.75rem;
    }
    
    .odds-button {
        min-width: 50px;
        padding: 0.4rem 0.6rem;
    }
}

/* Анимации для фильтрации */
.event-card,
.match-row {
    transition: all 0.3s ease;
}

.event-card[style*="display: none"],
.match-row[style*="display: none"] {
    transform: translateY(-10px);
    opacity: 0;
}

.event-card[style*="display: block"],
.match-row[style*="display: grid"] {
    transform: translateY(0);
    opacity: 1;
}

/* Live индикатор */
.live-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Сообщения об отсутствии событий */
.no-events-message,
.no-matches-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin: 1rem 0;
}

.no-events-message p,
.no-matches-message p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1rem;
}

/* Улучшенные переходы для фильтров */
.sport-category,
.live-filter {
    position: relative;
    overflow: hidden;
}

.sport-category::before,
.live-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.sport-category:hover::before,
.live-filter:hover::before {
    left: 100%;
}

/* Анимация загрузки для фильтрации */
.filtering {
    position: relative;
}

.filtering::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Улучшенные стили для активных фильтров */
.sport-category.active,
.live-filter.active {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Счетчик событий для фильтров */
.filter-count {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    margin-left: 0.5rem;
    font-weight: 600;
}

/* Новый современный дизайн для Актуальных событий */
.live-events {
    background: #1a1a1a;
}

/* Спортивные категории вверху */
.sport-categories-top {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
    padding: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sport-categories-top::-webkit-scrollbar {
    display: none;
}

.sport-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #888;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.sport-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sport-tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.sport-icon {
    font-size: 1.1rem;
}

.sport-text {
    font-size: 0.85rem;
}



/* Современные матчи */
.live-matches-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tournament-block {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Фоновые изображения для всего блока матчей по видам спорта */
.live-events.sport-football {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/footboll-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

.live-events.sport-esports {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/cubersport-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

.live-events.sport-tennis {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/tenis-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

.live-events.sport-basketball {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/bascet-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

.live-events.sport-hockey {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/Nhl-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

.live-events.sport-volleyball {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/voleyboll-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

.live-events.sport-table-tennis {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(26, 26, 26, 0.5)),
        url('../img/table-tenis-background.webp') center/cover no-repeat !important;
    background-attachment: scroll;
}

/* Плавный переход для смены фона */
.live-events {
    transition: background 0.5s ease-in-out;
    padding: 4rem 0;
    min-height: 600px;
    position: relative;
    will-change: background;
    transform: translateZ(0);
}

/* Оптимизация для лучшей производительности - используем scroll для всех устройств */

/* Интерактивные плюсы и минусы */
.pros-cons-interactive {
    margin: 3rem 0;
}

.pros-cons-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

/* Стили для всех списков в контенте */
.content-grid ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.content-grid li {
    position: relative;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.content-grid li:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.content-grid li::before {
    content: "▶";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Специальные стили для киберспорта */
.content-grid .cyber-games li::before {
    content: "🎮";
}

/* Специальные стили для плюсов */
.content-grid .pros-list li::before {
    content: "✅";
}

/* Специальные стили для минусов */
.content-grid .cons-list li::before {
    content: "❌";
}

.pro-item,
.con-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pro-item:hover,
.con-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.pro-icon,
.con-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.pro-item span:last-child,
.con-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Интерактивный FAQ */
.faq-interactive {
    margin: 3rem 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 8px 8px;
    margin-top: -1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Изображения в контенте */
.content-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-height: 200px;
}

.content-image:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.content-image-full {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.content-image:hover .content-image-full {
    transform: scale(1.02);
}



.tournament-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #333;
    border-bottom: 1px solid #444;
    font-weight: 600;
    color: #fff;
}

.tournament-flag {
    font-size: 1.2rem;
}

.tournament-name {
    font-size: 0.95rem;
}

.match-card {
    display: grid;
    grid-template-columns: auto 2fr auto 3fr auto;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    gap: 1rem;
}

.match-card:last-child {
    border-bottom: none;
}

.match-card:hover {
    background: rgba(255, 215, 0, 0.05);
}

.match-favorite {
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.match-favorite:hover {
    color: var(--primary-color);
}

.match-teams-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-logo-small {
    width: 28px;
    height: 28px;
    position: relative;
}

.team-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.team-placeholder-small {
    display: none;
    width: 28px;
    height: 28px;
    background: #444;
    color: #fff;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.team-name-compact {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.match-time-compact {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
    min-width: 80px;
}

.match-odds-section {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.odds-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #3a3a3a;
    color: #ccc;
    border: 1px solid #444;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: 50px;
}

.odds-compact:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.odds-compact strong {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.odds-more {
    padding: 0.5rem 0.75rem;
    background: #444;
    color: #888;
    border: 1px solid #555;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.odds-more:hover {
    background: #555;
    color: #fff;
}

.odds-more strong {
    font-weight: 600;
}

.match-actions-compact {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    background: #3a3a3a;
    color: #888;
    border: 1px solid #444;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #555;
    color: #fff;
    border-color: #666;
}

/* Мобильная адаптивность для нового hero */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 2rem 0;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cards {
        margin-top: 2rem;
    }
    
    .sport-categories-top {
        padding: 2px;
        gap: 2px;
    }
    
    .sport-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .sport-text {
        display: none;
    }
    
    .match-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .match-teams-section {
        order: 1;
    }
    
    .match-time-compact {
        order: 2;
    }
    
    .match-odds-section {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .match-actions-compact {
        order: 4;
        justify-content: center;
    }
    
    .match-favorite {
        order: 0;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-card {
        padding: 0.75rem;
    }
    
    .tournament-header {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .match-card {
        padding: 0.75rem;
    }
    
    .odds-compact {
        min-width: 45px;
        padding: 0.4rem 0.6rem;
    }
    
    .team-name-compact {
        font-size: 0.85rem;
    }
    
    /* Мобильная адаптация для новых интерактивных элементов */
    .section-headers-dual,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-headers-dual h3 {
        text-align: center;
    }
    
    .pros-cons-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pros-grid,
    .cons-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .content-image {
        margin-top: 1rem;
        max-height: 150px;
    }
    
    .content-image-full {
        height: 150px;
    }
    
    .faq-question-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Мобильная адаптация для списков */
    .content-grid li {
        padding: 0.6rem 0.8rem 0.6rem 2rem;
        font-size: 0.9rem;
    }
    
    .content-grid li::before {
        left: 0.6rem;
        font-size: 0.7rem;
    }
}

/* Комплексная мобильная адаптация сайта */

/* Основные мобильные настройки */
@media (max-width: 768px) {
    /* Общие настройки для мобильных */
    html {
        font-size: 14px;
    }
    
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Хедер для мобильных */
    .header {
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Главный баннер для мобильных */
    .hero {
        min-height: 500px;
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Карточки в hero для мобильных */
    .hero-cards {
        margin-top: 2rem;
        gap: 0.75rem;
    }
    
    .hero-card {
        padding: 0.75rem;
    }
    
    .card-match {
        gap: 1rem;
        flex-direction: column;
    }
    
    .team {
        font-size: 0.8rem;
    }
    
    .card-odds {
        gap: 0.5rem;
    }
    
    .hero-card .odds-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Игры 24/7 для мобильных */
    .games-247 {
        padding: 3rem 0;
    }
    
    .games-247-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .game-card {
        min-height: 160px;
    }
    
    .game-info {
        padding: 0.75rem 1rem 1rem;
    }
    
    .game-title {
        font-size: 1rem;
    }
    
    .game-subtitle {
        font-size: 0.8rem;
    }
    
    /* Топ события для мобильных */
    .top-events {
        padding: 3rem 0;
    }
    
    .top-events-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .top-events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .top-event-card {
        padding: 1rem;
    }
    
    .event-match-compact {
        gap: 1rem;
        flex-direction: column;
    }
    
    .team-compact {
        gap: 0.5rem;
    }
    
    .team-avatar {
        width: 40px;
        height: 40px;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .event-odds-compact {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .odds-compact-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    /* Спортивные категории для мобильных */
    .sport-categories-top {
        margin: 0 15px 1.5rem;
        padding: 2px;
        gap: 2px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sport-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .sport-text {
        display: none;
    }
    
    /* Матчи для мобильных */
    .live-matches-modern {
        padding: 0 15px;
    }
    
    .tournament-block {
        margin-bottom: 1.5rem;
    }
    
    .tournament-header {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .match-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .match-teams-section {
        order: 1;
        gap: 0.5rem;
    }
    
    .match-time-compact {
        order: 2;
        min-width: auto;
        margin: 0.5rem 0;
    }
    
    .match-odds-section {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .match-actions-compact {
        order: 4;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .match-favorite {
        order: 0;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .odds-compact {
        min-width: 45px;
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .odds-compact strong {
        font-size: 0.9rem;
    }
    
    .team-name-compact {
        font-size: 0.85rem;
    }
    
    /* Статья для мобильных */
    .article {
        padding: 3rem 0;
    }
    
    .article-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .article-intro h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .article-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .section-headers-dual {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Калькуляторы для мобильных */
    .calc-inputs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .input-group input {
        padding: 0.75rem 2rem 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .currency {
        margin-top: 1.25rem;
    }
    
    /* Бонусы для мобильных */
    .bonus-cards-three-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .bonus-image-column {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .bonus-card-compact {
        height: auto;
        padding: 1.25rem;
    }
    
    /* Регистрация для мобильных */
    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .registration-options {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .reg-option {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* FAQ для мобильных */
    .faq {
        padding: 3rem 0;
    }
    
    .faq-list {
        padding: 0 15px;
    }
    
    .faq-item {
        margin-bottom: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.4;
        padding-right: 3rem; /* Место для знака + */
    }
    
    .faq-question::after {
        right: 1rem;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        max-height: 300px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
    
    /* Дополнительные стили для очень длинных вопросов */
    .faq-question:lang(ru) {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    /* Форма обратной связи для мобильных */
    .contact-form {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Плюсы и минусы для мобильных */
    .pros-cons-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pros-grid,
    .cons-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .pro-item,
    .con-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Изображения для мобильных */
    .content-image {
        margin-top: 1rem;
        max-height: 150px;
    }
    
    .content-image-full {
        height: 150px;
    }
    
    .interface-screenshot,
    .promo-codes-image,
    .registration-form-image {
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* Списки для мобильных */
    .content-grid li {
        padding: 0.6rem 0.8rem 0.6rem 2rem;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .content-grid li::before {
        left: 0.6rem;
        font-size: 0.7rem;
    }
    
    /* Заголовки для мобильных */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .article-body h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
        padding: 0 15px;
    }
    
    .article-body p {
        padding: 0 15px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .article-body ul {
        padding: 0 15px 0 2rem;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 450px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        max-width: 250px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-card {
        padding: 0.5rem;
    }
    
    .card-match {
        gap: 0.75rem;
    }
    
    .team {
        font-size: 0.75rem;
    }
    
    .hero-card .odds-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Игры для очень маленьких экранов */
    .games-247 {
        padding: 2rem 0;
    }
    
    .games-grid {
        padding: 0 10px;
        gap: 0.75rem;
    }
    
    .game-card {
        min-height: 140px;
    }
    
    .game-info {
        padding: 0.5rem 0.75rem 0.75rem;
    }
    
    .game-title {
        font-size: 0.95rem;
    }
    
    .game-subtitle {
        font-size: 0.75rem;
    }
    
    .game-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }
    
    /* Топ события для очень маленьких экранов */
    .top-events {
        padding: 2rem 0;
    }
    
    .top-events-grid {
        padding: 0 10px;
        gap: 0.75rem;
    }
    
    .top-event-card {
        padding: 0.75rem;
    }
    
    .event-match-compact {
        gap: 0.75rem;
    }
    
    .team-avatar {
        width: 35px;
        height: 35px;
    }
    
    .team-name {
        font-size: 0.75rem;
    }
    
    .odds-compact-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    /* Спортивные категории для очень маленьких экранов */
    .sport-categories-top {
        margin: 0 10px 1rem;
        padding: 1px;
    }
    
    .sport-tab {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Матчи для очень маленьких экранов */
    .live-matches-modern {
        padding: 0 10px;
    }
    
    .tournament-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .match-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .match-teams-section {
        gap: 0.4rem;
    }
    
    .team-name-compact {
        font-size: 0.8rem;
    }
    
    .odds-compact {
        min-width: 40px;
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .odds-compact strong {
        font-size: 0.85rem;
    }
    
    /* Статья для очень маленьких экранов */
    .article {
        padding: 2rem 0;
    }
    
    .article-hero {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .article-intro h2 {
        font-size: 1.6rem;
    }
    
    .article-stats {
        gap: 1rem;
    }
    
    .section-headers-dual {
        gap: 0.75rem;
    }
    
    .content-grid {
        gap: 1.5rem;
    }
    
    /* Калькуляторы для очень маленьких экранов */
    .interactive-calculator,
    .bonus-calculator {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .input-group input {
        padding: 0.6rem 1.5rem 0.6rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .currency {
        margin-top: 1rem;
        right: 0.6rem;
    }
    
    /* Бонусы для очень маленьких экранов */
    .bonus-card-compact {
        padding: 1rem;
    }
    
    .bonus-header-compact .bonus-amount {
        font-size: 1.3rem;
    }
    
    /* FAQ для очень маленьких экранов */
    .faq {
        padding: 2rem 0;
    }
    
    .faq-list {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 0.75rem 0.75rem;
    }
    
    /* Форма для очень маленьких экранов */
    .contact-form {
        padding: 2rem 0;
    }
    
    .contact-content {
        padding: 0 10px;
        gap: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    /* Заголовки для очень маленьких экранов */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
        padding: 0 10px;
    }
    
    .article-body p {
        padding: 0 10px;
        font-size: 0.85rem;
    }
    
    .article-body ul {
        padding: 0 10px 0 1.5rem;
    }
    
    .content-grid li {
        padding: 0.5rem 0.6rem 0.5rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .content-grid li::before {
        left: 0.5rem;
        font-size: 0.65rem;
    }
    
    /* Изображения для очень маленьких экранов */
    .content-image {
        margin-top: 0.75rem;
        max-height: 120px;
    }
    
    .content-image-full {
        height: 120px;
    }
    
    .interface-screenshot,
    .promo-codes-image,
    .registration-form-image {
        border-radius: 6px;
    }
}

/* Стили для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .hero {
        min-height: 600px;
        padding: 3rem 0;
    }
    
    .hero-main {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .top-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .sport-categories-top {
        margin: 0 30px 2rem;
    }
    
    .live-matches-modern {
        padding: 0 30px;
    }
    
    .article-hero {
        gap: 2.5rem;
    }
    
    .article-intro h2 {
        font-size: 2.4rem;
    }
    
    .section-headers-dual {
        gap: 2rem;
    }
    
    .content-grid {
        gap: 2.5rem;
    }
}

/* Стили для больших экранов */
@media (min-width: 1025px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero {
        min-height: 700px;
        padding: 4rem 0;
    }
    
    .hero-main {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .top-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .sport-categories-top {
        margin: 0 40px 2rem;
    }
    
    .live-matches-modern {
        padding: 0 40px;
    }
    
    .article-hero {
        gap: 3rem;
    }
    
    .article-intro h2 {
        font-size: 2.8rem;
    }
    
    .section-headers-dual {
        gap: 2.5rem;
    }
    
    .content-grid {
        gap: 3rem;
    }
}

/* Стили для очень больших экранов */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 50px;
    }
    
    .hero-content {
        padding: 0 50px;
    }
    
    .hero {
        min-height: 800px;
        padding: 5rem 0;
    }
    
    .hero-main {
        gap: 5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 3.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .top-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .sport-categories-top {
        margin: 0 50px 2.5rem;
    }
    
    .live-matches-modern {
        padding: 0 50px;
    }
    
    .article-hero {
        gap: 4rem;
    }
    
    .article-intro h2 {
        font-size: 3.2rem;
    }
    
    .section-headers-dual {
        gap: 3rem;
    }
    
    .content-grid {
        gap: 4rem;
    }
}

/* Оптимизация для устройств с высоким DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        background-image: url('../img/back-ground-image.webp');
        background-size: cover;
        background-position: center;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .team-logo-mini,
    .team-logo-avatar,
    .game-logo-mini,
    .game-logo-small,
    .game-logo-tournament {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Оптимизация для устройств с поддержкой hover */
@media (hover: hover) {
    .hero-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    }
    
    .game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }
    
    .top-event-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }
}

/* Оптимизация для устройств без поддержки hover */
@media (hover: none) {
    .hero-card:active,
    .game-card:active,
    .top-event-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Оптимизация для устройств с поддержкой touch */
@media (pointer: coarse) {
    .btn,
    .odds-btn,
    .odds-compact-btn,
    .action-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .sport-tab {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    .match-card {
        min-height: 60px;
    }
    
    .hero-card {
        min-height: 120px;
    }
}

/* Оптимизация для устройств с поддержкой prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        transform: none;
    }
}

/* Оптимизация для устройств с темной темой */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #000000;
        --bg-card: #0a0a0a;
        --border-color: #1a1a1a;
    }
}

/* Оптимизация для устройств с высокой контрастностью */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffff00;
        --text-color: #ffffff;
        --border-color: #ffffff;
    }
    
    .btn,
    .odds-btn,
    .odds-compact-btn {
        border-width: 2px;
    }
}

/* Оптимизация для устройств с поддержкой grid */
@supports (display: grid) {
    .hero-main,
    .games-grid,
    .top-events-grid,
    .article-hero,
    .section-headers-dual,
    .content-grid {
        display: grid;
    }
}

/* Fallback для устройств без поддержки grid */
@supports not (display: grid) {
    .hero-main,
    .games-grid,
    .top-events-grid,
    .article-hero,
    .section-headers-dual,
    .content-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .hero-main > *,
    .games-grid > *,
    .top-events-grid > *,
    .article-hero > *,
    .section-headers-dual > *,
    .content-grid > * {
        flex: 1 1 300px;
        margin: 0.5rem;
    }
}

/* Оптимизация для устройств с поддержкой CSS custom properties */
@supports (--custom: property) {
    :root {
        --header-height: 80px;
        --primary-color: #FFD700;
        --secondary-color: #1a1a1a;
        --accent-color: #2E7D32;
        --text-color: #ffffff;
        --bg-dark: #0a0a0a;
        --bg-card: #1a1a1a;
        --border-color: #333;
    }
}

/* Fallback для устройств без поддержки CSS custom properties */
@supports not (--custom: property) {
    .header {
        height: 80px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #FFD700, #FFA000);
        color: #1a1a1a;
    }
    
    .hero-highlight {
        background: linear-gradient(135deg, #FFD700, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Оптимизация для устройств с поддержкой backdrop-filter */
@supports (backdrop-filter: blur(10px)) {
    .header {
        backdrop-filter: blur(10px);
    }
    
    .hero-card {
        backdrop-filter: blur(10px);
    }
}

/* Fallback для устройств без поддержки backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .header {
        background: rgba(10, 10, 10, 0.98);
    }
    
    .hero-card {
        background: rgba(42, 42, 42, 0.95);
    }
}

/* Оптимизация для устройств с поддержкой CSS transforms */
@supports (transform: translateY(0)) {
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        transform: translateY(-8px);
    }
}

/* Fallback для устройств без поддержки CSS transforms */
@supports not (transform: translateY(0)) {
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        margin-top: -8px;
    }
}

/* Оптимизация для устройств с поддержкой CSS transitions */
@supports (transition: all 0.3s ease) {
    .btn,
    .hero-card,
    .game-card,
    .top-event-card {
        transition: all 0.3s ease;
    }
}

/* Fallback для устройств без поддержки CSS transitions */
@supports not (transition: all 0.3s ease) {
    .btn,
    .hero-card,
    .game-card,
    .top-event-card {
        transition: none;
    }
}

/* Оптимизация для устройств с поддержкой CSS animations */
@supports (animation: pulse 2s infinite) {
    .live-indicator {
        animation: pulse 2s infinite;
    }
}

/* Fallback для устройств без поддержки CSS animations */
@supports not (animation: pulse 2s infinite) {
    .live-indicator {
        opacity: 0.8;
    }
}

/* Оптимизация для устройств с поддержкой CSS flexbox */
@supports (display: flex) {
    .hero-buttons,
    .hero-stats,
    .card-odds,
    .event-odds-compact {
        display: flex;
    }
}

/* Fallback для устройств без поддержки CSS flexbox */
@supports not (display: flex) {
    .hero-buttons,
    .hero-stats,
    .card-odds,
    .event-odds-compact {
        display: block;
    }
    
    .hero-buttons > *,
    .hero-stats > *,
    .card-odds > *,
    .event-odds-compact > * {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Оптимизация для устройств с поддержкой CSS grid */
@supports (display: grid) {
    .hero-main,
    .games-grid,
    .top-events-grid {
        display: grid;
    }
}

/* Fallback для устройств без поддержки CSS grid */
@supports not (display: grid) {
    .hero-main,
    .games-grid,
    .top-events-grid {
        display: block;
    }
    
    .hero-main > *,
    .games-grid > *,
    .top-events-grid > * {
        display: block;
        margin: 1rem 0;
    }
}

/* Оптимизация для устройств с поддержкой CSS custom properties и grid */
@supports (--custom: property) and (display: grid) {
    .hero-main {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .top-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/* Fallback для устройств без поддержки CSS custom properties или grid */
@supports not ((--custom: property) and (display: grid)) {
    .hero-main {
        display: block;
    }
    
    .hero-text,
    .hero-visual {
        display: block;
        margin: 2rem 0;
    }
    
    .games-grid,
    .top-events-grid {
        display: block;
    }
    
    .game-card,
    .top-event-card {
        display: block;
        margin: 1rem 0;
    }
}

/* Оптимизация для устройств с поддержкой CSS custom properties, grid и flexbox */
@supports (--custom: property) and (display: grid) and (display: flex) {
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        display: flex;
        gap: 2rem;
    }
    
    .card-odds {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .event-odds-compact {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }
}

/* Fallback для устройств без поддержки CSS custom properties, grid или flexbox */
@supports not ((--custom: property) and (display: grid) and (display: flex)) {
    .hero-buttons {
        display: block;
    }
    
    .hero-stats {
        display: block;
    }
    
    .card-odds {
        display: block;
        text-align: center;
    }
    
    .event-odds-compact {
        display: block;
        text-align: center;
    }
    
    .hero-buttons > *,
    .hero-stats > *,
    .card-odds > *,
    .event-odds-compact > * {
        display: block;
        margin: 0.5rem 0;
    }

}

/* Финальная оптимизация для всех устройств */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Оптимизация производительности */
.hero,
.hero-background,
.hero-gradient {
    will-change: transform;
    transform: translateZ(0);
}

.hero-card,
.game-card,
.top-event-card {
    will-change: transform;
    transform: translateZ(0);
}

/* Оптимизация для устройств с ограниченной памятью */
@media (max-device-memory: 512MB) {
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-card,
    .game-card,
    .top-event-card {
        transform: none;
        will-change: auto;
    }
}

/* Оптимизация для устройств с низкой производительностью */
@media (prefers-reduced-motion: reduce) {
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        transform: none;
    }
}

/* Оптимизация для устройств с высоким DPI и ограниченной памятью */
@media (-webkit-min-device-pixel-ratio: 2) and (max-device-memory: 512MB) {
    .hero-background {
        background-image: url('../img/back-ground-image.webp');
        background-size: cover;
        background-position: center;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        background-attachment: scroll;
    }
}

/* Оптимизация для устройств с поддержкой touch и ограниченной памятью */
@media (pointer: coarse) and (max-device-memory: 512MB) {
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-card,
    .game-card,
    .top-event-card {
        transform: none;
        will-change: auto;
    }
}

/* Оптимизация для устройств с поддержкой hover и неограниченной памятью */
@media (hover: hover) and (min-device-memory: 1GB) {
    .hero-background {
        background-attachment: fixed;
    }
    
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        transform: translateY(-8px);
        will-change: transform;
    }
}

/* Оптимизация для устройств с поддержкой CSS custom properties, grid, flexbox и transforms */
@supports (--custom: property) and (display: grid) and (display: flex) and (transform: translateY(0)) {
    .hero-main {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .top-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        display: flex;
        gap: 2rem;
    }
    
    .card-odds {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .event-odds-compact {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        transform: translateY(-8px);
        transition: all 0.3s ease;
    }

}

/* Fallback для устройств без поддержки современных CSS возможностей */
@supports not ((--custom: property) and (display: grid) and (display: flex) and (transform: translateY(0))) {
    .hero-main {
        display: block;
    }
    
    .hero-text,
    .hero-visual {
        display: block;
        margin: 2rem 0;
    }
    
    .games-grid,
    .top-events-grid {
        display: block;
    }
    
    .game-card,
    .top-event-card {
        display: block;
        margin: 1rem 0;
    }
    
    .hero-buttons {
        display: block;
    }
    
    .hero-stats {
        display: block;
    }
    
    .card-odds {
        display: block;
        text-align: center;
    }
    
    .event-odds-compact {
        display: block;
        text-align: center;
    }
    
    .hero-buttons > *,
    .hero-stats > *,
    .card-odds > *,
    .event-odds-compact > * {
        display: block;
        margin: 0.5rem 0;
    }
    
    .hero-card:hover,
    .game-card:hover,
    .top-event-card:hover {
        transform: none;
        transition: none;
    }
}

/* Простое увеличение размеров блоков с изображениями команд */
@media (max-width: 768px) {
    /* Увеличиваем логотипы команд */
    .team-logo-small,
    .team-placeholder-small {
        width: 50px !important; /* Увеличиваем с 40px */
        height: 50px !important; /* Увеличиваем с 40px */
    }
    
    .team-placeholder-small {
        font-size: 1.2rem !important; /* Увеличиваем с 1rem */
    }
    
    /* Увеличиваем названия команд */
    .team-name-compact {
        font-size: 1.1rem !important; /* Увеличиваем с 1rem */
    }
    
    /* Увеличиваем секцию команд */
    .match-teams-section {
        gap: 1.25rem !important; /* Увеличиваем с 1.25rem */
    }
    
    .team-item {
        gap: 0.75rem !important; /* Увеличиваем с 0.5rem */
    }
}

/* Дополнительное увеличение для очень маленьких экранов */
@media (max-width: 480px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 44px !important; /* Увеличиваем с 36px */
        height: 44px !important; /* Увеличиваем с 36px */
    }
    
    .team-placeholder-small {
        font-size: 1.1rem !important; /* Увеличиваем с 0.9rem */
    }
    
    .team-name-compact {
        font-size: 1rem !important; /* Увеличиваем с 0.95rem */
    }
    
    .match-teams-section {
        gap: 1rem !important; /* Увеличиваем с 0.875rem */
    }
    
    .team-item {
        gap: 0.6rem !important; /* Увеличиваем с 0.4rem */
    }
}

/* Увеличение для экстремально маленьких экранов */
@media (max-width: 360px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 40px !important; /* Увеличиваем с 32px */
        height: 40px !important; /* Увеличиваем с 32px */
    }
    
    .team-placeholder-small {
        font-size: 1rem !important; /* Увеличиваем с 0.8rem */
    }
    
    .team-name-compact {
        font-size: 0.95rem !important; /* Увеличиваем с 0.9rem */
    }
    
    .match-teams-section {
        gap: 0.875rem !important; /* Увеличиваем с 0.75rem */
    }
    
    .team-item {
        gap: 0.5rem !important; /* Увеличиваем с 0.3rem */
    }
}

/* Увеличение для горизонтальной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .team-logo-small,
    .team-placeholder-small {
        width: 54px !important; /* Увеличиваем с 36px */
        height: 54px !important; /* Увеличиваем с 36px */
    }
    
    .team-placeholder-small {
        font-size: 1.3rem !important; /* Увеличиваем с 0.9rem */
    }
    
    .team-name-compact {
        font-size: 1.15rem !important; /* Увеличиваем с 0.9rem */
    }
    
    .match-teams-section {
        gap: 1.375rem !important; /* Увеличиваем с 0.875rem */
    }
    
    .team-item {
        gap: 0.875rem !important; /* Увеличиваем с 0.5rem */
    }
}

/* Увеличение размеров изображений команд на ПК версии */
@media (min-width: 769px) {
    /* Увеличиваем логотипы команд на ПК */
    .team-logo-small,
    .team-placeholder-small {
        width: 60px !important; /* Увеличиваем стандартный размер */
        height: 60px !important; /* Увеличиваем стандартный размер */
        border-radius: 8px;
    }
    
    .team-placeholder-small {
        font-size: 1.4rem !important; /* Увеличиваем шрифт плейсхолдера */
        font-weight: 700;
    }
    
    /* Увеличиваем названия команд на ПК */
    .team-name-compact {
        font-size: 1.2rem !important; /* Увеличиваем шрифт названий */
        font-weight: 600;
        line-height: 1.3;
    }
    
    /* Увеличиваем секцию команд на ПК */
    .match-teams-section {
        gap: 1.5rem !important; /* Увеличиваем промежутки между командами */
    }
    
    .team-item {
        gap: 1rem !important; /* Увеличиваем внутренние отступы команд */
    }
}

/* Увеличение для больших экранов */
@media (min-width: 1025px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 70px !important; /* Дополнительно увеличиваем для больших экранов */
        height: 70px !important; /* Дополнительно увеличиваем для больших экранов */
        border-radius: 10px;
    }
    
    .team-placeholder-small {
        font-size: 1.6rem !important; /* Увеличиваем шрифт плейсхолдера */
    }
    
    .team-name-compact {
        font-size: 1.3rem !important; /* Увеличиваем шрифт названий */
    }
    
    .match-teams-section {
        gap: 1.75rem !important; /* Увеличиваем промежутки между командами */
    }
    
    .team-item {
        gap: 1.25rem !important; /* Увеличиваем внутренние отступы команд */
    }
}

/* Увеличение для очень больших экранов */
@media (min-width: 1400px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 80px !important; /* Максимальное увеличение для очень больших экранов */
        height: 80px !important; /* Максимальное увеличение для очень больших экранов */
        border-radius: 12px;
    }
    
    .team-placeholder-small {
        font-size: 1.8rem !important; /* Максимальный шрифт плейсхолдера */
    }
    
    .team-name-compact {
        font-size: 1.4rem !important; /* Максимальный шрифт названий */
    }
    
    .match-teams-section {
        gap: 2rem !important; /* Максимальные промежутки между командами */
    }
    
    .team-item {
        gap: 1.5rem !important; /* Максимальные внутренние отступы команд */
    }
}

/* Оптимизация размеров изображений команд - уменьшаем слишком большие размеры */
@media (min-width: 769px) {
    /* Оптимальные размеры логотипов команд на ПК */
    .team-logo-small,
    .team-placeholder-small {
        width: 48px !important; /* Уменьшаем с 60px до оптимального размера */
        height: 48px !important; /* Уменьшаем с 60px до оптимального размера */
        border-radius: 6px;
    }
    
    .team-placeholder-small {
        font-size: 1.2rem !important; /* Уменьшаем с 1.4rem */
        font-weight: 600;
    }
    
    /* Оптимальные размеры названий команд на ПК */
    .team-name-compact {
        font-size: 1rem !important; /* Уменьшаем с 1.2rem */
        font-weight: 600;
        line-height: 1.3;
    }
    
    /* Оптимальные промежутки на ПК */
    .match-teams-section {
        gap: 1.25rem !important; /* Уменьшаем с 1.5rem */
    }
    
    .team-item {
        gap: 0.75rem !important; /* Уменьшаем с 1rem */
    }
}

/* Оптимизация для больших экранов */
@media (min-width: 1025px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 54px !important; /* Уменьшаем с 70px до оптимального размера */
        height: 54px !important; /* Уменьшаем с 70px до оптимального размера */
        border-radius: 8px;
    }
    
    .team-placeholder-small {
        font-size: 1.3rem !important; /* Уменьшаем с 1.6rem */
    }
    
    .team-name-compact {
        font-size: 1.1rem !important; /* Уменьшаем с 1.3rem */
    }
    
    .match-teams-section {
        gap: 1.5rem !important; /* Уменьшаем с 1.75rem */
    }
    
    .team-item {
        gap: 1rem !important; /* Уменьшаем с 1.25rem */
    }
}

/* Оптимизация для очень больших экранов */
@media (min-width: 1400px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 60px !important; /* Уменьшаем с 80px до оптимального размера */
        height: 60px !important; /* Уменьшаем с 80px до оптимального размера */
        border-radius: 10px;
    }
    
    .team-placeholder-small {
        font-size: 1.4rem !important; /* Уменьшаем с 1.8rem */
    }
    
    .team-name-compact {
        font-size: 1.2rem !important; /* Уменьшаем с 1.4rem */
    }
    
    .match-teams-section {
        gap: 1.75rem !important; /* Уменьшаем с 2rem */
    }
    
    .team-item {
        gap: 1.25rem !important; /* Уменьшаем с 1.5rem */
    }
}

/* Дополнительное уменьшение размеров изображений команд - делаем их компактными */
@media (min-width: 769px) {
    /* Компактные размеры логотипов команд на ПК */
    .team-logo-small,
    .team-placeholder-small {
        width: 40px !important; /* Уменьшаем с 48px до компактного размера */
        height: 40px !important; /* Уменьшаем с 48px до компактного размера */
        border-radius: 6px;
    }
    
    .team-placeholder-small {
        font-size: 1rem !important; /* Уменьшаем с 1.2rem */
        font-weight: 600;
    }
    
    /* Компактные размеры названий команд на ПК */
    .team-name-compact {
        font-size: 0.9rem !important; /* Уменьшаем с 1rem */
        font-weight: 600;
        line-height: 1.3;
    }
    
    /* Компактные промежутки на ПК */
    .match-teams-section {
        gap: 1rem !important; /* Уменьшаем с 1.25rem */
    }
    
    .team-item {
        gap: 0.6rem !important; /* Уменьшаем с 0.75rem */
    }
}

/* Дополнительное уменьшение для больших экранов */
@media (min-width: 1025px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 44px !important; /* Уменьшаем с 54px до компактного размера */
        height: 44px !important; /* Уменьшаем с 54px до компактного размера */
        border-radius: 7px;
    }
    
    .team-placeholder-small {
        font-size: 1.1rem !important; /* Уменьшаем с 1.3rem */
    }
    
    .team-name-compact {
        font-size: 1rem !important; /* Уменьшаем с 1.1rem */
    }
    
    .match-teams-section {
        gap: 1.25rem !important; /* Уменьшаем с 1.5rem */
    }
    
    .team-item {
        gap: 0.8rem !important; /* Уменьшаем с 1rem */
    }
}

/* Дополнительное уменьшение для очень больших экранов */
@media (min-width: 1400px) {
    .team-logo-small,
    .team-placeholder-small {
        width: 48px !important; /* Уменьшаем с 60px до компактного размера */
        height: 48px !important; /* Уменьшаем с 60px до компактного размера */
        border-radius: 8px;
    }
    
    .team-placeholder-small {
        font-size: 1.2rem !important; /* Уменьшаем с 1.4rem */
    }
    
    .team-name-compact {
        font-size: 1.1rem !important; /* Уменьшаем с 1.2rem */
    }
    
    .match-teams-section {
        gap: 1.5rem !important; /* Уменьшаем с 1.75rem */
    }
    
    .team-item {
        gap: 1rem !important; /* Уменьшаем с 1.25rem */
    }
}

/* Скрытие блока статистики и карточек матчей на мобильных устройствах */
@media (max-width: 768px) {
    /* Скрываем блок статистики */
    .hero-stats {
        display: none !important; /* Скрываем весь блок статистики */
    }
    
    /* Скрываем блок с карточками матчей */
    .hero-visual {
        display: none !important; /* Скрываем весь блок с карточками */
    }
    
    /* Центрируем основной контент */
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Убираем отступы, которые были для скрытых блоков */
    .hero-text {
        margin-bottom: 2rem;
    }
    
    /* Увеличиваем отступ для кнопок */
    .hero-buttons {
        margin-top: 1rem;
    }
}

/* Скрытие для очень маленьких экранов */
@media (max-width: 480px) {
    .hero-stats {
        display: none !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .hero-main {
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-top: 0.75rem;
    }
}

/* Скрытие для экстремально маленьких экранов */
@media (max-width: 360px) {
    .hero-stats {
        display: none !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .hero-main {
        margin-bottom: 1rem;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-top: 0.5rem;
    }
}

/* Скрытие для горизонтальной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-stats {
        display: none !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .hero-main {
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-top: 0.75rem;
    }
}

/* FAQ для очень маленьких экранов */
.faq {
    padding: 2rem 0;
}

.faq-list {
    padding: 0 10px;
}

.faq-item {
    margin-bottom: 0.6rem;
}

.faq-question {
    padding: 0.8rem;
    font-size: 0.9rem;
    min-height: 50px;
    line-height: 1.2;
    padding-right: 2.5rem;
}

.faq-question::after {
    right: 0.8rem;
    font-size: 1rem;
}

.faq-answer {
    padding: 0 0.8rem 0.8rem;
    max-height: 250px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

/* Специальные стили для длинных вопросов на маленьких экранах */
.faq-question {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* FAQ для планшетов */
@media (min-width: 768px) and (max-width: 1024px) {
    .faq {
        padding: 3.5rem 0;
    }
    
    .faq-list {
        padding: 0 20px;
        max-width: 800px;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1.05rem;
        min-height: 55px;
        line-height: 1.35;
        padding-right: 3.5rem;
    }
    
    .faq-question::after {
        right: 1.2rem;
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
        max-height: 350px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 350px;
    }
}

/* FAQ для горизонтальной ориентации мобильных устройств */
@media (max-width: 1024px) and (orientation: landscape) {
    .faq {
        padding: 2rem 0;
    }
    
    .faq-list {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        min-height: 45px;
        line-height: 1.3;
        padding-right: 2.5rem;
    }
    
    .faq-question::after {
        right: 0.8rem;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.8rem;
        max-height: 200px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
    }
}

/* FAQ для устройств с высоким DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .faq-question::after {
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .faq-item {
        border-width: 0.5px;
    }
}

/* FAQ для устройств с очень высоким DPI */
@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
    .faq-question {
        font-weight: 500;
    }
    
    .faq-question::after {
        font-weight: 400;
    }
}

/* Улучшения доступности для FAQ */
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    background: rgba(255, 215, 0, 0.15);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Улучшения для скринридеров */
.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.faq-question[aria-expanded="false"]::after {
    content: '+';
}

/* Анимация для плавного открытия/закрытия */
.faq-answer {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Улучшения для темной темы */
@media (prefers-color-scheme: dark) {
    .faq-item {
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .faq-question:hover {
        background: rgba(255, 215, 0, 0.08);
    }
}

/* FAQ для устройств с сенсорным экраном */
@media (hover: none) and (pointer: coarse) {
    .faq-question {
        min-height: 60px;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-question:active {
        background: rgba(255, 215, 0, 0.2);
        transform: scale(0.98);
    }
    
    .faq-question::after {
        font-size: 1.3rem;
        right: 1.2rem;
    }
    
    /* Увеличиваем область касания */
    .faq-question::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        z-index: -1;
    }
}

/* FAQ для устройств с hover */
@media (hover: hover) and (pointer: fine) {
    .faq-question:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .faq-item:hover {
        border-color: var(--primary-color);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
    }
}

/* FAQ для широких экранов */
@media (min-width: 1200px) {
    .faq-list {
        max-width: 1200px;
    }
    
    .faq-question {
        font-size: 1.15rem;
        padding: 1.8rem;
        padding-right: 4.5rem;
    }
    
    .faq-question::after {
        font-size: 1.6rem;
        right: 1.8rem;
    }
    
    .faq-answer {
        padding: 0 1.8rem 1.8rem;
    }
}

/* FAQ для очень широких экранов */
@media (min-width: 1600px) {
    .faq-list {
        max-width: 1400px;
    }
    
    .faq-question {
        font-size: 1.2rem;
        padding: 2rem;
        padding-right: 5rem;
    }
    
    .faq-question::after {
        font-size: 1.8rem;
        right: 2rem;
    }
    
    .faq-answer {
        padding: 0 2rem 2rem;
    }
}

/* FAQ для устройств с высокой контрастностью */
@media (prefers-contrast: high) {
    .faq-item {
        border-width: 2px;
        border-color: var(--text-color);
    }
    
    .faq-question {
        border-bottom: 1px solid var(--text-color);
    }
    
    .faq-question::after {
        color: var(--text-color);
        font-weight: bold;
    }
    
    .faq-item.active .faq-question {
        background: var(--text-color);
        color: var(--bg-dark);
    }
    
    .faq-item.active .faq-question::after {
        color: var(--bg-dark);
    }
}

/* FAQ для устройств с уменьшенным движением */
@media (prefers-reduced-motion: reduce) {
    .faq-question::after {
        transition: none;
    }
    
    .faq-answer {
        transition: none;
    }
    
    .faq-item {
        transition: none;
    }
}

/* FAQ для устройств с принудительной темной темой */
@media (prefers-color-scheme: dark) {
    .faq-item {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .faq-question:hover {
        background: rgba(255, 215, 0, 0.08);
    }
    
    .faq-answer {
        background: rgba(255, 255, 255, 0.02);
    }
}

/* FAQ для устройств с увеличенным шрифтом */
@media (min-resolution: 120dpi) {
    .faq-question {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .faq-answer {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* FAQ для устройств с очень увеличенным шрифтом */
@media (min-resolution: 144dpi) {
    .faq-question {
        font-size: 1.3rem;
        line-height: 1.7;
        padding: 2rem;
        padding-right: 4.5rem;
    }
    
    .faq-answer {
        font-size: 1.2rem;
        line-height: 1.8;
        padding: 0 2rem 2rem;
    }
    
    .faq-question::after {
        font-size: 1.8rem;
        right: 2rem;
    }
}

/* FAQ для устройств с уменьшенным шрифтом */
@media (max-resolution: 96dpi) {
    .faq-question {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* FAQ для портретной ориентации на мобильных */
@media (max-width: 768px) and (orientation: portrait) {
    .faq {
        padding: 2.5rem 0;
    }
    
    .faq-question {
        font-size: 0.95rem;
        line-height: 1.3;
        padding: 1rem;
        padding-right: 2.5rem;
        min-height: 55px;
    }
    
    .faq-question::after {
        font-size: 1.1rem;
        right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        max-height: 280px;
    }
}

/* FAQ для ландшафтной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .faq {
        padding: 1.5rem 0;
    }
    
    .faq-question {
        font-size: 0.9rem;
        line-height: 1.2;
        padding: 0.8rem;
        padding-right: 2.2rem;
        min-height: 45px;
    }
    
    .faq-question::after {
        font-size: 1rem;
        right: 0.8rem;
    }
    
    .faq-answer {
        padding: 0 0.8rem 0.8rem;
        max-height: 200px;
    }
}

/* FAQ для планшетов в портретной ориентации */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .faq-question {
        font-size: 1.05rem;
        line-height: 1.35;
        padding: 1.2rem;
        padding-right: 3.5rem;
        min-height: 60px;
    }
    
    .faq-question::after {
        font-size: 1.3rem;
        right: 1.2rem;
    }
}

/* FAQ для планшетов в ландшафтной ориентации */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .faq-question {
        font-size: 1rem;
        line-height: 1.3;
        padding: 1rem;
        padding-right: 3rem;
        min-height: 50px;
    }
    
    .faq-question::after {
        font-size: 1.2rem;
        right: 1rem;
    }
}

/* Полное скрытие мобильного меню на всех размерах экрана */
.mobile-menu-toggle,
.sidebar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Убираем отступы для основного контента, связанные с мобильным меню */
.main-content.sidebar-open {
    margin-left: 0 !important;
    transform: none !important;
}

