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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0a0a0f;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.98), rgba(24, 24, 36, 0.95));
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(251, 191, 36, 0.05) 0%, 
        rgba(16, 185, 129, 0.03) 50%, 
        rgba(251, 191, 36, 0.05) 100%);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #f59e0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    animation: shimmer 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(31, 41, 55, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link i {
    font-size: 1.1rem;
    color: #fbbf24;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.95) 0%, rgba(24, 24, 36, 0.9) 100%);
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(16, 185, 129, 0.02) 50%, transparent 70%);
    animation: heroRotate 20s linear infinite;
    pointer-events: none;
}

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

@keyframes heroRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    animation: heroTextShimmer 4s ease-in-out infinite, heroTextFloat 6s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
    line-height: 1.1;
}

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

@keyframes heroTextFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero p {
    font-size: 1.4rem;
    color: #d1d5db;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: heroTextFadeIn 1s ease-out 0.5s forwards;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    cursor: pointer;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.stat:hover::before {
    left: 100%;
}

.stat:nth-child(1) {
    animation: statFadeIn 1s ease-out 0.8s backwards;
}

.stat:nth-child(2) {
    animation: statFadeIn 1s ease-out 1.1s backwards;
}

.stat:nth-child(3) {
    animation: statFadeIn 1s ease-out 1.4s backwards;
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    counter-reset: number;
    animation: numberPulse 2s ease-in-out infinite;
}

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

.stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.3;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 40px;
    height: 40px;
}

.hero-decoration:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    width: 30px;
    height: 30px;
}

.hero-decoration:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
    width: 50px;
    height: 50px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Casino Cards Section */
.casinos-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.casinos-grid {
    display: grid;
    gap: 24px;
}

/* Premium Casino Card */
.casino-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.05), transparent);
    transition: left 0.5s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.casino-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.casino-logo {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(251, 191, 36, 0.3);
    background: rgba(31, 41, 55, 0.5);
}

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

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

.casino-logo-text {
    color: #9ca3af;
    font-size: 0.7rem;
    text-align: center;
    z-index: 1;
    position: relative;
    font-weight: 600;
}

.casino-info {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.casino-tagline {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.casino-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.2);
    white-space: nowrap;
}

.rating-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.rating-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #fbbf24 0deg, #fbbf24 var(--percentage), rgba(251, 191, 36, 0.2) var(--percentage));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rating-circle::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #111827;
}

.rating-score {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fbbf24;
    z-index: 1;
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.star {
    color: #fbbf24;
    font-size: 0.9rem;
}

.casino-content {
    display: block;
}

.bonus-section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.bonus-title {
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.1;
}

.bonus-terms {
    color: #9ca3af;
    font-size: 0.75rem;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.85rem;
}

.feature i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.play-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    width: 100%;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669, #047857);
}

/* License Section */
.license-section {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    margin: 80px 0;
}

.license-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
}

.license-grid {
    display: grid;
    gap: 24px;
}

.license-item {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid #fbbf24;
}

.license-brand {
    font-weight: 700;
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.license-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-section a {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fecaca;
    padding: 24px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
    font-weight: 600;
}

/* Responsible Gaming Partners */
.responsible-gaming-partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin: 40px 0 0 0;
    text-align: center;
}

.partners-title {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    transition: all 0.3s ease;
    opacity: 0.8;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
    height: 60px;
    width: auto;
    max-width: 150px;
    filter: brightness(0.9) contrast(1.2) saturate(1.1);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1.3) contrast(1.4) saturate(1.2);
}

/* Специальные стили для разных логотипов */
.partner-logo[href*="gambleaware"] img {
    filter: brightness(1.4) contrast(1.3) hue-rotate(20deg);
}

.partner-logo[href*="gamblingtherapy"] img {
    filter: brightness(1.5) contrast(1.2) saturate(1.3);
}

.partner-logo[href*="gamcare"] img {
    filter: brightness(1.3) contrast(1.4) saturate(1.2);
}

.partner-logo[href*="gambleaware"]:hover img {
    filter: brightness(1.6) contrast(1.5) hue-rotate(20deg);
}

.partner-logo[href*="gamblingtherapy"]:hover img {
    filter: brightness(1.7) contrast(1.4) saturate(1.4);
}

.partner-logo[href*="gamcare"]:hover img {
    filter: brightness(1.5) contrast(1.6) saturate(1.3);
}

.age-restriction {
    cursor: default;
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

.age-restriction:hover {
    transform: none;
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: none;
}

.age-restriction img {
    height: 70px;
    filter: brightness(1.2) contrast(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    /* Планшетная адаптация шапки */
    .logo {
        font-size: 2.4rem;
    }
    
    .header-nav {
        gap: 28px;
        padding: 10px 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 14px;
    }
}

@media (max-width: 768px) {
    .casino-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .casino-logo-section {
        align-items: center;
    }
    
    .rating-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(17, 24, 39, 0.5);
        padding: 12px 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .rating-circle {
        width: 60px;
        height: 60px;
    }
    
    .rating-score {
        font-size: 1.2rem;
    }
    
    .rating-stars {
        flex-direction: row;
    }
    
    .star {
        font-size: 1.1rem;
    }
    
    .casino-name {
        font-size: 1.3rem;
    }
    
    .bonus-amount {
        font-size: 1.5rem;
    }
    
    /* Hero мобильная адаптация */
    .hero {
        padding: 80px 0 60px;
        border-radius: 0 0 30px 30px;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        margin-bottom: 24px;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        gap: 30px;
        margin-top: 60px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        min-width: 280px;
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-decoration {
        display: none;
    }
    
    /* Мобильная адаптация шапки */
    .header {
        padding: 16px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .header-nav {
        background: rgba(31, 41, 55, 0.6);
        padding: 8px 16px;
        gap: 24px;
        border-radius: 25px;
        border: 1px solid rgba(251, 191, 36, 0.3);
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .nav-link i {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Responsible Gaming Partners мобильные стили */
    .responsible-gaming-partners {
        padding: 30px 0;
        margin: 30px 0 0 0;
    }
    
    .partners-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        padding: 10px 12px;
        border-radius: 10px;
    }
    
    .partner-logo img {
        height: 50px;
    }
    
    .age-restriction img {
        height: 55px;
    }
}

@media (max-width: 480px) {
    .casino-card {
        padding: 16px;
        border-radius: 16px;
    }
    
    .casino-header {
        gap: 12px;
    }
    
    .casino-logo-section {
        gap: 12px;
    }
    
    .casino-logo {
        width: 60px;
        height: 60px;
    }
    
    .casino-name {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .casino-tagline {
        font-size: 0.75rem;
    }
    
    .badge {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
    
    .bonus-section {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .bonus-amount {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .bonus-terms {
        font-size: 0.7rem;
    }
    
    .features-grid {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .feature {
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .feature i {
        font-size: 0.9rem;
    }
    
    .play-button {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 12px;
    }
    
    .rating-section {
        padding: 10px 12px;
    }
    
    .rating-circle {
        width: 50px;
        height: 50px;
    }
    
    .rating-score {
        font-size: 1rem;
    }
    
    .star {
        font-size: 0.9rem;
    }
    
    /* Hero для маленьких экранов */
    .hero {
        padding: 60px 0 50px;
        border-radius: 0 0 25px 25px;
        margin-bottom: 25px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 50px;
    }
    
    .stat {
        min-width: 250px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Мобильная шапка для маленьких экранов */
    .header {
        padding: 12px 0;
    }
    
    .header-content {
        gap: 12px;
    }
    
    .logo {
        font-size: 1.9rem;
    }
    
    .header-nav {
        gap: 16px;
        padding: 6px 12px;
        border-radius: 20px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .nav-link i {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Responsible Gaming Partners для маленьких экранов */
    .responsible-gaming-partners {
        padding: 25px 0;
        margin: 25px 0 0 0;
    }
    
    .partners-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .partners-logos {
        gap: 16px;
    }
    
    .partner-logo {
        padding: 8px 10px;
        border-radius: 8px;
    }
    
    .partner-logo img {
        height: 40px;
    }
    
    .age-restriction img {
        height: 45px;
    }
}

/* Улучшенная типографика для маленьких экранов */
@media (max-width: 360px) {
    .casino-name {
        font-size: 1.1rem;
    }
    
    .bonus-amount {
        font-size: 1.2rem;
    }
    
    .casino-tagline {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .badge {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    /* Шапка для сверхмаленьких экранов */
    .logo {
        font-size: 1.6rem;
    }
    
    .header-nav {
        gap: 12px;
        padding: 4px 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 3px 6px;
        gap: 4px;
    }
    
    /* Responsible Gaming Partners для сверхмаленьких экранов */
    .partners-logos {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .partner-logo {
        padding: 6px 8px;
        border-radius: 6px;
    }
    
    .partner-logo img {
        height: 35px;
    }
    
    .age-restriction img {
        height: 40px;
    }
    
    .partners-title {
        font-size: 0.85rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 60px 0;
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.legal-title i {
    font-size: 2.8rem;
    color: #fbbf24;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-section p {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: #fbbf24;
    font-weight: 600;
}

.legal-section a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Help Organizations Styles */
.help-organizations {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.help-org {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #fbbf24;
}

.help-org h3 {
    margin-bottom: 8px;
}

.help-org h3 a {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.help-org h3 a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.help-org p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Helpline Box Styles */
.helpline-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
}

.helpline-box h3 {
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.helpline-box p {
    margin-bottom: 8px;
}

.helpline-box a {
    color: #fbbf24;
    font-weight: 700;
    text-decoration: none;
}

.helpline-box a:hover {
    text-decoration: underline;
}

/* Legal Footer */
.legal-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Legal Links in Footer */
.legal-links {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .legal-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 12px;
    }
    
    .legal-title i {
        font-size: 2.2rem;
    }
    
    .legal-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .help-organizations {
        gap: 16px;
    }
    
    .help-org {
        padding: 16px;
    }
    
    .helpline-box {
        padding: 20px;
        margin: 16px 0;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .legal-title {
        font-size: 1.6rem;
    }
    
    .legal-title i {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.1rem;
    }
    
    .legal-section p,
    .legal-section ul {
        font-size: 0.9rem;
    }
    
    .help-org {
        padding: 12px;
    }
    
    .helpline-box {
        padding: 16px;
    }
    
    .back-home-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .legal-links {
        font-size: 0.85rem;
    }
} 