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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a3a3a 100%);
    min-height: 100vh;
    color: #fff;
}

/* Header */
.header {
    background: #0d1117;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    background: linear-gradient(90deg, #ec4899, #f97316);
    color: #fff;
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

.gradient-text {
    background: linear-gradient(90deg, #f472b6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-box {
    background: rgba(28, 35, 51, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.contact-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.email-icon {
    font-size: 20px;
}

.contact-email a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.contact-email a:hover {
    color: #22d3ee;
}

.telegram-btn {
    display: inline-block;
    background: linear-gradient(90deg, #22d3ee, #10b981);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.telegram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.3);
}

/* Casino Banner */
.casino-banner {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1f5e 50%, #1f3a4e 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.banner-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.banner-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 48px;
}

.banner-text {
    text-align: left;
    flex: 1;
}

.banner-text h2 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.banner-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #22d3ee;
    font-style: italic;
    margin-bottom: 16px;
}

.banner-text p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.banner-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.dot.active {
    background: #22d3ee;
}

/* Footer */
.footer {
    background: #0d1117;
    margin-top: 60px;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #22d3ee;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #22d3ee;
}

.footer-categories h4 {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-categories li {
    margin-bottom: 10px;
}

.footer-categories a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-categories a:hover {
    color: #22d3ee;
}

.footer-cta {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #22d3ee, #10b981);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 11px !important;
    color: rgba(255,255,255,0.4) !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-icons {
        flex-direction: row;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .banner-dots {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}
