/* Blik Information */
.blik-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
}

.blik-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.blik-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-white);
    font-weight: 800;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card:hover::before {
    transform: translateX(0);
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.info-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --vibrant-red: #FF0040;
    --deep-red: #A91B3C;
    --primary-white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #1A1A1A;
    --text-color: #2C2C2C;
    --accent-gold: #FFD700;
    --accent-green: #00D9A3;
    --accent-purple: #7B61FF;
    --gradient-red: linear-gradient(135deg, #FF0040 0%, #DC143C 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
    --radius: 16px;
}

/* Local Fonts */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(123, 97, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: var(--primary-white);
    padding: 4px 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-accept {
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: #B91C3C;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.logo-text {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
    margin-top: -4px;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.gift-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-red);
    color: var(--primary-white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.gift-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gift-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

.gift-button:hover::before {
    width: 300px;
    height: 300px;
}

.gift-button svg {
    animation: giftFloat 2s ease-in-out infinite;
}

@keyframes giftFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

/* Article Update */
.article-update {
    background: var(--light-gray);
    padding: 12px 0;
    border-top: 1px solid var(--medium-gray);
}

.update-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.update-content time {
    font-weight: 500;
}

.update-content p {
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 25px 0 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🎰';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: -50px;
    right: -50px;
    transform: rotate(-15deg);
    animation: floatEmoji 10s ease-in-out infinite;
}

.hero::after {
    content: '💰';
    position: absolute;
    font-size: 150px;
    opacity: 0.03;
    bottom: -30px;
    left: -30px;
    transform: rotate(15deg);
    animation: floatEmoji 12s ease-in-out infinite reverse;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1::after {
    content: '✨';
    position: absolute;
    font-size: 25px;
    top: -10px;
    right: -40px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Top Casinos */
.top-casinos {
    padding: 60px 0;
    background: var(--primary-white);
    position: relative;
}

.top-casinos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-red) 0%,
        var(--accent-gold) 25%,
        var(--accent-green) 50%,
        var(--accent-purple) 75%,
        var(--primary-red) 100%);
    background-size: 200% 100%;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

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

.casino-card {
    background: var(--primary-white);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 70px 45px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.casino-card.featured {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
}

.casino-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}


.casino-card .casino-image {
    max-width: 210px; /* Максимальная ширина изображения */
    height: auto; /* Автоматическая высота для сохранения пропорций */
    border-radius: 12px; /* Слегка закругленные углы */
    margin-bottom: 20px; /* Отступ снизу от названия казино */
    display: block; /* Делаем изображение блочным элементом */
    margin-left: auto; /* Центрируем изображение */
    margin-right: auto; /* Центрируем изображение */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Легкая тень для объема */
    transition: transform 0.3s ease; /* Плавный переход при наведении */
}

.casino-card:hover .casino-image {
    transform: scale(1.05); /* Увеличение изображения при наведении на карточку */
}


.casino-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    color: var(--primary-white);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.casino-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
}

.casino-bonus {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-cta {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--primary-white);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.casino-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.casino-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.casino-cta:hover::before {
    width: 300px;
    height: 300px;
}

/* Casino Showcase */
.casino-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
    position: relative;
}

.casino-showcase::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.casino-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-weight: 800;
    position: relative;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.casino-item {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.casino-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-white);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.casino-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.casino-item:hover::before {
    opacity: 1;
}

.casino-item:hover .casino-logo {
    transform: rotate(360deg) scale(1.1);
}

.casino-logo {
    width: 200px;
    height: 200px;
    background: var(--gradient-red);
    border-radius: 16px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800; /* Этот и следующие текстовые стили станут неактуальны для логотипа, но могут пригодиться, если вы решите оставить запасной текст */
    color: var(--primary-white); /* Аналогично */
    font-size: 24px; /* Аналогично */
    transition: transform 0.5s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}


.casino-logo img {
    max-width: 100%; /* Гарантирует, что изображение не будет шире родительского блока */
    max-height: 100%; /* Гарантирует, что изображение не будет выше родительского блока */
    height: auto; /* Сохраняет пропорции изображения */
    display: block; /* Убирает возможные нижние отступы, присущие inline-элементам */
    object-fit: contain; /* Обеспечивает, что изображение полностью помещается в контейнер, сохраняя пропорции, без обрезки */
    margin: 0 auto; /* Центрирование изображения */
}

.casino-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.casino-bonus-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
}

.casino-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
}

.detail-item {
    font-size: 14px;
}

.detail-label {
    color: #666;
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.detail-value {
    font-weight: 700;
    color: var(--text-color);
    font-size: 16px;
}

.rating {
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.payment-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.payment-badge:first-child {
    background: var(--gradient-red);
    color: var(--primary-white);
}

.payment-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 100%;
    background: var(--gradient-red);
    color: var(--primary-white);
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '→';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.play-button:hover {
    padding-right: 50px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.play-button:hover::before {
    opacity: 1;
    right: 20px;
}

/* Text Block */
.text-block {
    padding: 60px 0;
    background: var(--primary-white);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--primary-white);
    position: relative;
}

.faq::after {
    content: '❓';
    position: absolute;
    font-size: 300px;
    opacity: 0.02;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(-15deg);
}

.faq h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-weight: 800;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.1);
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    padding: 28px 60px 28px 28px;
    position: relative;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item[open] summary {
    background: rgba(220, 20, 60, 0.05);
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--primary-red);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 50%;
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    background: var(--primary-red);
    color: var(--primary-white);
}

.faq-item p {
    padding: 0 28px 28px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Expert Section */
.expert {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
    position: relative;
}

.expert-card {
    background: var(--primary-white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red);
}

.expert-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-red);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    position: relative;
}

.photo-placeholder::after {
    content: '✓';
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-green);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-white);
    border: 3px solid var(--primary-white);
}

.expert-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.expert-title {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.expert-info p {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Comments Section */
.comments {
    padding: 80px 0;
    background: var(--primary-white);
    position: relative;
}

.comment-button {
    display: block;
    margin: 0 auto 40px;
    background: var(--gradient-red);
    color: var(--primary-white);
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.comment-button::before {
    content: '💬';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: all 0.3s ease;
}

.comment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
    padding-left: 60px;
}

.comment-button:hover::before {
    left: 20px;
}

.comment-list {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.comment {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 24px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-red);
    position: relative;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comment:nth-child(1) { animation-delay: 0.1s; }
.comment:nth-child(2) { animation-delay: 0.2s; }
.comment:nth-child(3) { animation-delay: 0.3s; }
.comment:nth-child(4) { animation-delay: 0.4s; }

.comment:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.comment strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 18px;
}

.comment p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.comment::after {
    content: '⭐⭐⭐⭐⭐';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 14px;
    opacity: 0.5;
}

/* Footer */
.site-footer {
    background: var(--gradient-dark);
    color: var(--primary-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-red);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 16px;
}

.disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-logos {
    display: flex;
    gap: 20px;
}

.responsibility-logo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.responsibility-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.responsibility-logo:first-child {
    font-size: 20px;
    background: var(--gradient-red);
    border: none;
}

/* Animations for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-cards,
.casino-grid,
.info-content,
.faq-items,
.expert-card,
.comment-list {
    animation: fadeInUp 0.8s ease-out;
}

/* Pulse animation for CTAs */
@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 20, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0);
    }
}

.casino-cta,
.play-button {
    animation: ctaPulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-red);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        gap: 16px;
    }

    .logo-text {
        font-size: 28px;
    }

    .gift-button {
        padding: 10px 20px;
    }

    .gift-button span {
        display: none;
    }

    .update-content {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    .casino-cards {
        grid-template-columns: 1fr;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .expert-card {
        flex-direction: column;
        text-align: center;
    }

    .info-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 12px;
    }
}
.author-image {
    max-width: 100%; /* Гарантирует, что изображение не будет шире своего родителя */
    height: auto; /* Сохраняет пропорции изображения */
    display: block; /* Устраняет возможные лишние пробелы под изображением */
    border-radius: 50%; /* Если вы хотите, чтобы изображение было круглым, как и его контейнер */
    margin: 0 auto; /* Центрирование изображения */
}

/***********************************************/
/* НОВЫЕ СТИЛИ ДЛЯ КОНТЕНТА И РАМОК */
/***********************************************/

.text-block-content {
    line-height: 1.8;
    font-size: 18px;
    color: var(--text-color);
}

.text-block-content p {
    margin-bottom: 20px;
}

.text-block-content em {
    font-style: italic;
    color: var(--deep-red);
}

/* Стилизованные списки */
.text-block-content ul, .text-block-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.text-block-content ul li, .text-block-content ol li {
    margin-bottom: 12px;
}

.text-block-content ul {
    list-style: none;
}

.text-block-content ul li::before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.2em;
}

/* Стилизованные таблицы */
.text-block-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
    font-size: 16px;
}

.text-block-content th, .text-block-content td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.text-block-content thead th {
    background: var(--gradient-red);
    color: var(--primary-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.text-block-content tbody tr {
    background-color: var(--primary-white);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.text-block-content tbody tr:nth-of-type(even) {
    background-color: var(--light-gray);
}

.text-block-content tbody tr:hover {
    background-color: #fff0f3;
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.text-block-content tbody td:first-child {
    font-weight: 600;
    color: var(--deep-red);
}

/* СТИЛИ ДЛЯ РАМОК ВОКРУГ АБЗАЦЕВ */
.content-frame {
    background: linear-gradient(135deg, var(--primary-white) 0%, #FDFDFD 100%);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    padding: 32px 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.content-frame:last-child {
    margin-bottom: 0;
}

.content-frame:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.1);
    border-left-color: var(--vibrant-red);
}

.content-frame > *:first-child {
    margin-top: 0;
}

.content-frame h2, .content-frame h3 {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.content-frame h3 {
    font-size: 24px;
    color: var(--primary-red);
}
#scrollToTopBtn {
    display: none; /* Изначально скрыта */
    position: fixed; /* Фиксированное положение */
    bottom: 20px; /* Отступ снизу */
    right: 30px; /* Отступ справа */
    z-index: 99; /* Поверх других элементов */
    border: none; /* Без рамки */
    outline: none; /* Без контура при клике */
    background: var(--primary-red); /* Используем цвет с вашего сайта */
    color: white; /* Цвет стрелки */
    cursor: pointer; /* Указатель при наведении */
    padding: 15px; /* Внутренние отступы */
    border-radius: 50%; /* Круглая форма */
    width: 50px;
    height: 50px;
    font-size: 18px; /* Размер стрелки */
    transition: background-color 0.3s, opacity 0.4s;
}

#scrollToTopBtn:hover {
    background: var(--deep-red); /* Цвет при наведении */
}