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

:root {
    --ice-blue: #00D4FF;
    --deep-blue: #0A1628;
    --arctic-white: #E8F4F8;
    --frost: #B8E6F0;
    --navy: #1A2A4A;
    --accent: #00A3CC;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--deep-blue) 0%, #0D1E36 100%);
    color: var(--arctic-white);
    min-height: 100vh;
}

header {
    background: rgba(10, 22, 40, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--frost);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--ice-blue);
}

.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--ice-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--arctic-white);
}

.hero h1 span {
    color: var(--ice-blue);
}

.hero p {
    font-size: 1.1rem;
    color: var(--frost);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-arctic {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-arctic.primary {
    background: linear-gradient(135deg, var(--ice-blue), var(--accent));
    color: var(--deep-blue);
}

.btn-arctic.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-arctic.secondary {
    background: transparent;
    color: var(--ice-blue);
    border: 2px solid var(--ice-blue);
}

.btn-arctic.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
}

.stats-bar {
    background: rgba(26, 42, 74, 0.5);
    padding: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ice-blue);
}

.stat-item .stat-label {
    color: var(--frost);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.casino-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header h2 span {
    color: var(--ice-blue);
}

.section-header p {
    color: var(--frost);
}

.casino-grid {
    display: grid;
    gap: 1.5rem;
}

.casino-card {
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.8), rgba(10, 22, 40, 0.9));
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s;
}

.casino-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.rank-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-blue);
}

.casino-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.casino-logo {
    width: 100px;
    height: 50px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 5px;
}

.casino-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--arctic-white);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: var(--ice-blue);
}

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

.casino-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--ice-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.casino-bonus {
    text-align: right;
    min-width: 200px;
}

.bonus-label {
    font-size: 0.85rem;
    color: var(--frost);
    margin-bottom: 0.25rem;
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ice-blue);
    margin-bottom: 0.75rem;
}

.visit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent));
    color: var(--deep-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.terms-text {
    display: block;
    font-size: 0.75rem;
    color: var(--frost);
    margin-top: 0.5rem;
}

.features-section {
    padding: 4rem 2rem;
    background: rgba(26, 42, 74, 0.3);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(10, 22, 40, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--ice-blue);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--frost);
    font-size: 0.9rem;
    line-height: 1.5;
}

footer {
    background: var(--deep-blue);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-about h3 {
    color: var(--ice-blue);
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--frost);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-responsible {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-responsible p {
    font-size: 0.85rem;
}

.footer-links h4 {
    color: var(--arctic-white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--frost);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--ice-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    color: var(--frost);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casino-main {
        flex-direction: column;
    }
    
    .casino-bonus {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
