:root {
    --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #4338ca 100%);
    --secondary-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --accent-color: #dc2626;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --card-bg: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                   0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 
                    0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --badge-bg: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --badge-text: #ffffff;
    --link-hover: #7c3aed;
    --button-gradient: linear-gradient(135deg, #7c3aed 0%, #4338ca 100%);
    --button-hover: linear-gradient(135deg, #6d28d9 0%, #3730a3 100%);
}

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

body {
    background: #0f172a;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Премиальная навигация с эффектом стекла */
.premium-nav {
    background: rgba(124, 58, 237, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
}

.brand-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Основные секции */
.hero-section {
    background: var(--primary-gradient);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(67, 56, 202, 0.4) 0%, transparent 25%);
    opacity: 0.6;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.casino-section {
    background: var(--secondary-gradient);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Премиальные карточки казино */
.casino-showcase {
    margin-top: 80px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(192, 198, 217, 0.05) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.casino-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 58, 237, 0.5) 50%, 
        transparent 100%);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.casino-card:hover::before {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 58, 237, 0.8) 50%, 
        transparent 100%);
}

.casino-logo-wrapper {
    width: 160px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.casino-logo-wrapper svg {
    width: 100%;
    height: 100%;
}

.casino-logo {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

/* Общие секции */
.section {
    padding: 80px 0;
    background: var(--background);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Why Choose Us секция */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background: var(--surface);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.1);
}

.why-choose-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--surface);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Способы оплаты */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.payment-method {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

/* FAQ секция */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Стили для футера */
.footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(124, 58, 237, 0.5) 50%,
        transparent 100%);
}

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

.footer-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

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

.footer-column h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    width: 100%;
}

.responsible-gaming-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.responsible-gaming-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsible-gaming-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.quick-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

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

.legal {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .footer-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        text-align: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .casino-card {
        padding: 20px;
    }

    .section {
        padding: 60px 0;
    }

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

    .casino-logo-wrapper {
        width: 140px;
        height: 44px;
    }

    .btn-play-now {
        padding: 0.875rem 1.75rem;
    }
}

@media (max-width: 640px) {
    .footer-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .responsible-gaming-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
    }
}

/* Мобильная оптимизация */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

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

    .casino-card {
        padding: 15px;
    }

    .section {
        padding: 40px 0;
    }

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

    .casino-logo-wrapper {
        width: 120px;
        height: 38px;
    }

    .casino-offer-image {
        height: 120px;
    }
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Модальное окно возрастной верификации */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--background);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-btn-confirm {
    background: var(--primary-color);
    color: white;
}

.modal-btn-confirm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.modal-btn-exit {
    background: #ef4444;
    color: white;
}

.modal-btn-exit:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.modal-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #ef4444;
    font-weight: 500;
}

.modal-warning i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        width: 85%;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 1.75rem;
    }

    .modal-text {
        font-size: 1rem;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .modal-btn {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
        width: 90%;
        max-height: 80vh;
    }

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

/* Стили для хедера */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    padding: 15px 0;
}

/* Основной контент */
main {
    padding-top: 120px; /* Увеличенный отступ под фиксированным хедером */
}

/* Стили для заголовка витрины */
.showcase-title {
    text-align: center;
    margin: 0 0 40px;
    padding: 0 20px;
}

.showcase-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-title p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Улучшенные стили для карточек офферов */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.casino-card {
    background: var(--background);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(124, 58, 237, 0.2);
    border-color: var(--primary-color);
}

.casino-logo {
    width: 200px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.casino-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 1.2rem;
}

.casino-features {
    margin: 20px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.casino-bonus {
    background: rgba(124, 58, 237, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.bonus-amount {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-play-now {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-play-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-terms {
    color: var(--text-color);
    font-size: 0.9rem;
    text-decoration: underline;
    opacity: 0.8;
}

.btn-terms:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 100px;
    }

    .showcase-title {
        margin: 0 0 30px;
    }

    .showcase-title h2 {
        font-size: 1.75rem;
    }

    .showcase-title p {
        font-size: 1.1rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .casino-card {
        padding: 20px;
        min-height: auto;
    }

    .casino-logo {
        width: 160px;
        height: 60px;
    }

    .bonus-amount {
        font-size: 1.5rem;
    }

    .casino-offer-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 90px;
    }

    .showcase-title {
        margin: 0 0 25px;
    }

    .showcase-title h2 {
        font-size: 1.5rem;
    }

    .showcase-title p {
        font-size: 1rem;
    }

    .casino-card {
        padding: 15px;
    }

    .casino-logo {
        width: 140px;
        height: 50px;
    }

    .casino-offer-image {
        height: 120px;
    }
}

/* Стили для изображений офферов */
.casino-offer-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.casino-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
}

.casino-logo {
    width: 180px;
    height: 60px;
    object-fit: contain;
    margin: 0;
    transition: transform 0.3s ease;
}

.casino-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .casino-logos {
        padding: 15px;
        margin-bottom: 25px;
    }

    .casino-logo {
        width: 140px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .casino-logos {
        padding: 10px;
        margin-bottom: 20px;
    }

    .casino-logo {
        width: 100px;
        height: 35px;
    }
}

/* Карточки преимуществ */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transition: transform 0.6s ease;
    transform: skewX(-15deg);
}

.feature-card:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Добавляем анимированный фон для всего сайта */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(67, 56, 202, 0.15) 0%, transparent 50%);
    animation: backgroundAnimation 15s ease-in-out infinite alternate;
}

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

/* Safer Gambling страница */
.safer-gambling-section {
    padding: 60px 0;
}

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

.safer-gambling-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
}

.safer-gambling-card h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.principles-list {
    list-style: none;
}

.principles-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.principles-list i {
    color: #7c3aed;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.principles-list h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.principles-list p {
    color: var(--text-secondary);
}

.warning-signs-list {
    list-style: none;
}

.warning-signs-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.warning-signs-list i {
    color: #dc2626;
    font-size: 1.25rem;
}

.warning-signs-list span {
    color: var(--text-primary);
}

.support-orgs {
    display: grid;
    gap: 1.5rem;
}

.support-org {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.support-org img {
    width: 100px;
    height: auto;
    filter: brightness(1.2);
}

.support-org h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-org p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.btn-support {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: transform 0.3s;
}

.btn-support:hover {
    transform: scale(0.98);
}

.control-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.tool-item i {
    color: #7c3aed;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tool-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tool-item p {
    color: var(--text-secondary);
}

/* Terms страница */
.terms-section {
    padding: 60px 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.terms-card h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.terms-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.terms-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.terms-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-secondary);
}

.terms-list li::before {
    content: '•';
    color: #7c3aed;
    font-size: 1.5rem;
}

/* Privacy страница */
.privacy-section {
    padding: 60px 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-card h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.privacy-card h3 {
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.privacy-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-secondary);
}

.privacy-list li::before {
    content: '•';
    color: #7c3aed;
    font-size: 1.5rem;
}

/* Фильтры и сортировка */
.filters-section {
    background: rgba(30, 41, 59, 0.5);
    padding: 20px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filters-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.filter-select {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--link-hover);
}

/* Бейджи для казино */
.casino-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--badge-bg);
    color: var(--badge-text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Платежные методы */
.casino-payments {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.casino-payments img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.casino-payments img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Информация о казино */
.casino-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.btn-review {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.btn-review:hover {
    color: var(--link-hover);
}

/* Рейтинговая секция */
.rating-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rating-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.rating-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.rating-icon i {
    font-size: 24px;
    color: white;
}

.rating-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.rating-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rating-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rating-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.rating-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .rating-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        padding: 1.5rem;
    }
}

/* Новости и советы */
.news-section {
    background: var(--secondary-gradient);
    padding: 80px 0;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.news-content h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.news-link {
    color: var(--link-hover);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    text-decoration: underline;
}

/* FAQ секция */
.faq-section {
    background: var(--secondary-gradient);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

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

/* Кнопка "Смотреть все" */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    background: var(--button-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-view-all:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Улучшенные стили для существующих элементов */
.hero-content {
    text-align: center;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

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

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

    .casino-payments {
        gap: 8px;
    }

    .casino-payments img {
        width: 35px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .filters-section {
        padding: 15px 0;
    }

    .filter-select {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .casino-badge {
        top: 15px;
        right: 15px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .rating-card {
        padding: 20px;
    }

    .news-content {
        padding: 20px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        padding: 0 15px 15px;
    }
}

/* Анимации для элементов */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Apply animations to elements */
.casino-card, .rating-card, .news-card {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.casino-card:nth-child(odd) {
    animation-delay: 0.2s;
}

.casino-card:nth-child(even) {
    animation-delay: 0.4s;
}

.rating-card {
    animation-delay: 0.3s;
}

.news-card {
    animation-delay: 0.5s;
}

.btn-play-now:hover {
    animation: pulse 1s infinite;
}

.trust-badge {
    animation: slideIn 0.5s ease forwards;
}

.trust-badge:nth-child(1) {
    animation-delay: 0.2s;
}

.trust-badge:nth-child(2) {
    animation-delay: 0.4s;
}

.trust-badge:nth-child(3) {
    animation-delay: 0.6s;
}

/* Add smooth transitions */
.casino-card, .rating-card, .news-card, .btn-play-now, .trust-badge {
    transition: all 0.3s ease;
}

.casino-features .feature-item i,
.rating-icon i,
.trust-badge i {
    transition: transform 0.3s ease;
}

.casino-features .feature-item:hover i,
.rating-icon:hover i,
.trust-badge:hover i {
    transform: scale(1.2);
}

/* Footer Styles */
.footer-bottom {
    padding: 2rem 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.age-warning img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.age-warning img:hover {
    transform: scale(1.1);
}

.age-warning span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.payment-methods img {
    width: 50px;
    height: 30px;
    object-fit: contain;
    padding: 5px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.responsible-gaming-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.responsible-gaming-logo img {
    width: 100px;
    height: 40px;
    object-fit: contain;
}

.responsible-gaming-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-methods img {
        width: 40px;
        height: 25px;
    }
    
    .responsible-gaming-logos {
        gap: 1rem;
    }
    
    .responsible-gaming-logo img {
        width: 80px;
        height: 32px;
    }
} 