* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(100, 200, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 100, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(100, 255, 200, 0.05) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    filter: blur(40px);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 0 0, 50px 50px, 100px 100px;
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64c8ff 0%, #ff64c8 50%, #64ffc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(100, 200, 255, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(100, 200, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 100, 200, 0.5));
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.2) 0%, rgba(255, 100, 200, 0.2) 100%);
    border: 1px solid rgba(100, 200, 255, 0.4);
    color: #e0e0e0;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(100, 200, 255, 0.2);
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(100, 200, 255, 0.4), 0 0 60px rgba(255, 100, 200, 0.2);
    border-color: rgba(100, 200, 255, 0.6);
    transform: translateY(-2px);
}

/* Brand Section */
.brand-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-card {
    max-width: 500px;
    width: 100%;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(100, 200, 255, 0.1);
    transition: all 0.3s ease;
}

.brand-card:hover {
    box-shadow: 0 0 60px rgba(100, 200, 255, 0.2);
    border-color: rgba(100, 200, 255, 0.4);
}

.brand-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-img {
    max-width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo-img {
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(100, 200, 255, 0.4));
}

.brand-description {
    color: #c0c0c0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.compliance-text {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.brand-cta {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.25) 0%, rgba(255, 100, 200, 0.25) 100%);
    border: 1px solid rgba(100, 200, 255, 0.5);
    color: #e0e0e0;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(100, 200, 255, 0.2);
    width: 100%;
    margin-bottom: 1rem;
}

.brand-cta:hover {
    box-shadow: 0 0 35px rgba(100, 200, 255, 0.4);
    border-color: rgba(100, 200, 255, 0.7);
    transform: translateY(-2px);
}

.license-text {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(15, 15, 25, 0.5);
}

.safety-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.safety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.safety-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 255, 200, 0.2) 0%, rgba(255, 100, 200, 0.2) 100%);
    border: 1px solid rgba(100, 255, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #64ffc8;
    box-shadow: 0 0 20px rgba(100, 255, 200, 0.2);
    backdrop-filter: blur(10px);
}

.safety-item span {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64c8ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid transparent;
}

.support-link:hover {
    color: #ff64c8;
    border-color: rgba(100, 200, 255, 0.3);
    background: rgba(100, 200, 255, 0.05);
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.2);
    transform: translateY(-2px);
}

.support-logo {
    width: 120px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.support-link:hover .support-logo {
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(100, 200, 255, 0.4));
}

.support-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

.support-message {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 2rem;
    background: rgba(10, 10, 15, 0.6);
    border-top: 1px solid rgba(100, 200, 255, 0.1);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #64c8ff 0%, #ff64c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(100, 200, 255, 0.3) 50%, transparent 100%);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.2);
}

.footer p {
    font-size: 0.8rem;
    color: #666;
    margin: 0.3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .brand-card {
        padding: 2rem 1.5rem;
    }
    
    .safety-icons {
        gap: 2rem;
    }
    
    .support-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .disclaimer {
        padding: 2rem 1.5rem;
    }
    
    .disclaimer-title {
        font-size: 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
}

