/* Основные стили для сайта Mostbet Casino */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --border-color: #dee2e6;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Прозрачный хедер */
.transparent-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-placeholder {
    flex: 0 0 180px;
}

.logo-placeholder img {
    max-width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Основной контент */
main {
    margin-top: 100px;
    margin-bottom: 60px;
}

.main-article {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
}

h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.meta-info {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.hero-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    margin-bottom: 40px;
}

/* Плюсы и минусы */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros, .cons {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pros {
    background-color: rgba(52, 152, 219, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.cons {
    background-color: rgba(231, 76, 60, 0.05);
    border-left: 4px solid var(--accent-color);
}

.pros ul, .cons ul {
    list-style-position: inside;
    margin-top: 15px;
}

.pros li, .cons li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Отзывы */
.review-excerpt {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.review-excerpt .author {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: #666;
    text-align: right;
}

.step-by-step {
    list-style-position: inside;
    counter-reset: step-counter;
}

.step-by-step li {
    margin-bottom: 20px;
    padding-left: 10px;
    position: relative;
}

.step-by-step li::before {
    counter-increment: step-counter;
    content: counter(step-counter) ". ";
    font-weight: bold;
    color: var(--secondary-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.related-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.related-links ul {
    list-style: none;
    margin-top: 15px;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.related-links a:hover {
    text-decoration: underline;
}

/* Футер */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

/* Навигация внутри статьи */
.article-nav {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.article-nav ul {
    list-style: none;
    margin-top: 15px;
}

.article-nav li {
    margin-bottom: 10px;
}

.article-nav a {
    color: var(--secondary-color);
    text-decoration: none;
}

.article-nav a:hover {
    text-decoration: underline;
}

/* Изображения с подписями */
.image-with-caption {
    margin: 30px 0;
}

.image-with-caption img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 14px;
}

/* Сетка преимуществ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.feature h4 {
    color: var(--secondary-color);
    margin-top: 0;
}

/* Бонусы */
.bonus-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.bonus-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.bonus-option:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.bonus-percent {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 15px 0;
}

/* Таблицы */
.loyalty-table, .payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.loyalty-table th, .payment-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

.loyalty-table td, .payment-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.loyalty-table tr:nth-child(even), .payment-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.loyalty-table tr:hover, .payment-table tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

/* Турниры */
.tournament-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.tournament {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.tournament h4 {
    color: white;
    margin-top: 0;
}

/* Отзывы на странице отзывов */
.review-category {
    margin-bottom: 50px;
}

.review-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-rating {
    color: #f39c12;
}

.review-summary {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.summary-item {
    padding: 20px;
    border-radius: 8px;
}

.summary-item.positive {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
}

.summary-item.negative {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
}

/* Проблемы и решения */
.problems-solutions {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.problem {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 8px;
}

.problem h4 {
    color: var(--accent-color);
    margin-top: 0;
}

/* Документы */
.documents-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.document {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

/* Шаги верификации */
.verification-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.verification-tips {
    background: rgba(52, 152, 219, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--secondary-color);
}

/* Каналы поддержки */
.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.channel {
    background: white;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    transition: var(--transition);
}

.channel:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Частые вопросы */
.common-questions {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.question {
    background: white;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

/* Рейтинг поддержки */
.support-rating {
    margin: 30px 0;
}

.rating-criteria {
    margin-bottom: 20px;
}

.rating-bar {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 5px;
}

/* FAQ */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-question {
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: var(--secondary-color);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 15px;
}

.faq-answer.active {
    display: block;
}

/* Итоговые выводы */
.final-conclusion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.conclusion-pros, .conclusion-cons {
    padding: 25px;
    border-radius: 8px;
}

.conclusion-pros {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
}

.conclusion-cons {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .feature-grid,
    .bonus-options,
    .support-channels,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pros-cons,
    .summary-grid,
    .final-conclusion {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-article {
        padding: 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .feature-grid,
    .bonus-options,
    .support-channels,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 20px;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 10px 0;
    }
    
    main {
        margin-top: 80px;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .loyalty-table, .payment-table {
        display: block;
        overflow-x: auto;
    }
}
/* Добавьте этот стиль в начало body или в общие стили */
body {
    padding-top: 100px; /* Высота вашей шапки + 20px */
}

/* Если шапка фиксированная, ее высоту нужно учесть */
.transparent-header {
    height: 80px; /* Явно задайте высоту шапки */
}

/* Обновите отступы для main */
main {
    margin-top: 0; /* Убираем margin-top, так как padding в body уже есть */
    margin-bottom: 60px;
}
/* Кнопки в контенте */
.content-cta {
    background: rgba(52, 152, 219, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    margin: 30px 0;
    text-align: center;
}

.content-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}
/* Футер CTA */
.footer-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}

.footer-cta p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ddd;
}
/* =========================== */
/* КНОПКИ "ИГРАТЬ" С РЕФЕРАЛЬНЫМИ ССЫЛКАМИ */
/* =========================== */

/* Основные стили для кнопок "Играть" */
.btn-play {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff3d00);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-play:hover {
    background: linear-gradient(135deg, #ff3d00, #ff1a00);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-play:active {
    transform: translateY(-1px);
}

/* Большая кнопка для CTA секций */
.btn-play-large {
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Кнопка в шапке */
.btn-play-header {
    padding: 10px 25px;
    font-size: 15px;
    margin-left: 20px;
}

/* Плавающая кнопка */
.btn-play-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 107, 0, 0.6);
    }
    100% {
        box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
    }
}

/* Баннер с кнопкой */
.play-banner {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.play-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.play-banner h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.play-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопка в шапке для мобильных */
@media (max-width: 768px) {
    .btn-play-header {
        padding: 8px 20px;
        font-size: 14px;
        margin-left: 10px;
    }
    
    .btn-play-floating {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .play-banner {
        padding: 25px 20px;
    }
    
    .play-banner h3 {
        font-size: 24px;
    }
    
    .play-banner p {
        font-size: 16px;
    }
}

/* Бонусная метка на кнопке */
.btn-play::after {
    content: 'БОНУС 125%';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffeb3b;
    color: #333;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
    transform: rotate(10deg);
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: rotate(10deg) translateY(0);
    }
    to {
        transform: rotate(10deg) translateY(-3px);
    }
}