/* Variables de couleurs - Thème bleu foncé */
:root {
    --primary-dark-blue: #0a1f44;
    --primary-blue: #1a3a6b;
    --secondary-blue: #2d4f7c;
    --accent-blue: #3d6ba3;
    --light-blue: #5a8fc7;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
    --bg-light: #f5f7fa;
    --bg-card: #ffffff;
    --border-color: #1a3a6b;
    --hover-blue: #4a7fb8;
    --gold-accent: #ffd700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(61, 107, 163, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(61, 107, 163, 0.8);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(61, 107, 163, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(61, 107, 163, 0.6), 0 0 15px rgba(255, 215, 0, 0.5);
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(20px) translateX(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes starFall {
    0% {
        transform: translateY(-10%) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(110%) translateX(50px);
        opacity: 0;
    }
}

@keyframes starFall2 {
    0% {
        transform: translateY(-10%) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(110%) translateX(-80px);
        opacity: 0;
    }
}

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

/* Reset et base */
* {
    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-white);
    background: radial-gradient(50% 50% at 50% 50%, #484a75, #3c41ce);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 107, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(90, 143, 199, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    contain: strict;
}

body::after {
    display: none;
}

/* Контейнер для падающих звездочек */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: none;
}

/* Отдельные звездочки создаются через JavaScript */
.star {
    display: none;
}

@keyframes starFallIndividual {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translate3d(calc(var(--drift, 0) * 1px), 100vh, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Старые псевдоэлементы - удаляем */
.stars-container::before,
.stars-container::after {
    display: none;
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        /* Первая группа звездочек */
        5% 0 0 0 rgba(255, 255, 255, 0.9),
        10% -20% 0 0 rgba(255, 215, 0, 0.8),
        15% -40% 0 0 rgba(255, 255, 255, 0.7),
        20% -60% 0 0 rgba(255, 215, 0, 0.6),
        25% -80% 0 0 rgba(255, 255, 255, 0.8),
        30% -100% 0 0 rgba(255, 255, 255, 0.7),
        35% -120% 0 0 rgba(255, 215, 0, 0.8),
        40% -140% 0 0 rgba(255, 255, 255, 0.6),
        45% -160% 0 0 rgba(255, 215, 0, 0.7),
        50% -180% 0 0 rgba(255, 255, 255, 0.8),
        /* Вторая группа */
        55% 0 0 0 rgba(255, 255, 255, 0.9),
        60% -30% 0 0 rgba(255, 215, 0, 0.8),
        65% -50% 0 0 rgba(255, 255, 255, 0.7),
        70% -70% 0 0 rgba(255, 215, 0, 0.6),
        75% -90% 0 0 rgba(255, 255, 255, 0.8),
        80% -110% 0 0 rgba(255, 255, 255, 0.7),
        85% -130% 0 0 rgba(255, 215, 0, 0.8),
        90% -150% 0 0 rgba(255, 255, 255, 0.6),
        95% -170% 0 0 rgba(255, 215, 0, 0.7),
        100% -190% 0 0 rgba(255, 255, 255, 0.8);
    filter: blur(0.5px);
    animation: starFall 12s linear infinite;
}

.stars-container::before {
    left: 10%;
    animation-delay: 0s;
}

.stars-container::after {
    left: 50%;
    animation: starFall2 15s linear infinite;
    animation-delay: 2s;
    box-shadow: 
        /* Третья группа звездочек */
        2% 0 0 0 rgba(255, 255, 255, 0.9),
        8% -25% 0 0 rgba(255, 215, 0, 0.8),
        12% -45% 0 0 rgba(255, 255, 255, 0.7),
        18% -65% 0 0 rgba(255, 215, 0, 0.6),
        22% -85% 0 0 rgba(255, 255, 255, 0.8),
        28% -105% 0 0 rgba(255, 255, 255, 0.7),
        32% -125% 0 0 rgba(255, 215, 0, 0.8),
        38% -145% 0 0 rgba(255, 255, 255, 0.6),
        42% -165% 0 0 rgba(255, 215, 0, 0.7),
        48% -185% 0 0 rgba(255, 255, 255, 0.8),
        /* Четвертая группа */
        52% 0 0 0 rgba(255, 255, 255, 0.9),
        58% -35% 0 0 rgba(255, 215, 0, 0.8),
        62% -55% 0 0 rgba(255, 255, 255, 0.7),
        68% -75% 0 0 rgba(255, 215, 0, 0.6),
        72% -95% 0 0 rgba(255, 255, 255, 0.8),
        78% -115% 0 0 rgba(255, 255, 255, 0.7),
        82% -135% 0 0 rgba(255, 215, 0, 0.8),
        88% -155% 0 0 rgba(255, 255, 255, 0.6),
        92% -175% 0 0 rgba(255, 215, 0, 0.7),
        98% -195% 0 0 rgba(255, 255, 255, 0.8);
}

/* Дополнительные звездочки через дополнительные элементы */
.stars-container {
    background-image: none;
    background-size: 100% 200%;
    background-position: 0% 0%;
}

/* Дополнительные частицы на фоне */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(50px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-200px) translateX(-30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-150px) translateX(80px) scale(1.1);
        opacity: 0.6;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.main-header {
    background: rgba(10, 31, 68, 0.85);
    padding: 5px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(61, 107, 163, 0.3);
    transform: translateZ(0);
    contain: layout style paint;
}

.main-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.logo p {
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 45px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 50%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.logo h1:hover {
    transform: scale(1.05);
    text-shadow: 
        2px 2px 12px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
}

.tagline {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    margin-bottom: 5px;
}

.last-update {
    color: var(--text-light);
    font-size: 0.65rem !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    margin-top: 5px;
}

.last-update #update-date {
    color: var(--gold-accent);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

main {
    position: relative;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Casinos Grid */
.casinos-section {
    padding: 20px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.casinos-section::before {
    display: none;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.casino-card {

    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}

.casino-card::before {
    display: none;
}

.casino-card:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.6);
    border-color: var(--accent-blue);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.casino-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.casino-logo img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.casino-rating {
    text-align: right;
}

.rating-score {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 3px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--gold-accent);
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.casino-card h3 {
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.casino-bonus {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ecf1 100%);
    border-radius: 8px;
    border-left: 5px solid var(--accent-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.casino-bonus::before {
    content: '🎁';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.3;
}

.casino-features {
    list-style: none;
    margin-bottom: 20px;
}

.casino-features li {
    color: var(--primary-blue);
    padding: 8px 0;
    font-size: 0.95rem;
}

.casino-description {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.casino-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.casino-actions .btn-secondary {
    width: 100%;
    flex: 1;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}

.payment-methods img {
    height: 25px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

.casino-disclaimer {
    color: var(--text-gray);
    font-size: 0.75rem;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-align: center;
    flex: 1;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--text-white);
    border: 2px solid var(--primary-dark-blue);
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--hover-blue) 100%);
    border-color: var(--accent-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(61, 107, 163, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #7e79f4 0%, var(--hover-blue) 100%);
    color: var(--text-white);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 4px 15px rgba(61, 107, 163, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--hover-blue) 0%, var(--light-blue) 100%);
    border-color: var(--hover-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(90, 143, 199, 0.6);
}

/* Content Section for policy pages */
.content-section {
    padding: 60px 0;
    background: rgba(10, 31, 68, 0.3);
    min-height: 60vh;
}

.content-page {
    background: linear-gradient(135deg, var(--bg-card) 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(61, 107, 163, 0.1);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(61, 107, 163, 0.1);
}

.content-page h3 {
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-blue);
}

.content-page h3:first-of-type {
    margin-top: 0;
}

.content-page p {
    color: var(--primary-blue);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.content-page li {
    color: var(--primary-blue);
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-page a {
    color: var(--accent-blue);
    text-decoration: none;
}

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

.content-page strong {
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.back-link {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.back-link a {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.back-link a:hover {
    color: var(--primary-dark-blue);
    transform: translateX(-5px);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-section::before {
    display: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(61, 107, 163, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(61, 107, 163, 0.3);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.info-card:hover .info-icon {
    filter: drop-shadow(0 8px 16px rgba(61, 107, 163, 0.4));
}

.info-card h3 {
    color: var(--primary-dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--primary-blue);
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #2a2a2a;
    padding: 20px 0;
    margin-top: 0px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.disclaimer-title {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.disclaimer-content p {
    color: var(--text-white);
    font-size: 0.75rem;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: left;
}

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

/* Footer */
.main-footer {
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 0 20px;
    margin-top: 60px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.footer-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-info-left,
.footer-info-right {
    padding: 0 20px;
}

.footer-info-title {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.footer-info-title:first-child {
    margin-top: 0;
}

.footer-info-text {
    color: var(--text-white);
    font-size: 0.7rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-info-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.footer-info-list li {
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.footer-info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-white);
}

/* Footer Navigation */
.footer-nav-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

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

.footer-nav a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-age {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 20px;
}

/* Footer Badges Section */
.footer-badges-section {
    margin-bottom: 10px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-badge::before {
    display: none;
}

.footer-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-title {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.badge-subtitle {
    color: var(--text-light);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 5px;
}

.badge-phone {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--text-white);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

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

    .footer-info-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-age {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-badge {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .casino-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .content-page {
        padding: 25px;
    }

    .content-page h3 {
        font-size: 1.3rem;
    }
}
