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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

body.is-loading::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a, #1a1a2e);
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.nav-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-logo {
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-link:hover {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.nav-link.telegram {
    background: linear-gradient(45deg, #0088cc, #00aaff);
    border-color: #0088cc;
}

.main-content {
    margin-top: 100px;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.title-line.highlight {
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

.stats-display {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.streams-section {
    padding: 10px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.stream-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stream-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.stream-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-icon {
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.stream-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    flex: 1;
}

.live-indicator {
    background: linear-gradient(45deg, #ff0040, #ff4080);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stream-card iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

.telegram-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.telegram-card {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 170, 255, 0.2));
    border: 2px solid #0088cc;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 50px rgba(0, 136, 204, 0.3);
}

.telegram-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
}

.telegram-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.telegram-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.telegram-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #0088cc, #00aaff);
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.telegram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.telegram-btn:hover .btn-glow {
    left: 100%;
}

.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    margin-top: 100px;
}

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

.disclaimer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .streams-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stream-card iframe {
        height: 250px;
    }
    
    .stats-display {
        flex-direction: column;
        gap: 30px;
    }
    
    .telegram-card {
        padding: 40px 30px;
        margin: 0 20px;
    }
}