/* ============================================
   MIXOTECH NEXUS - PROFESSIONAL THEME
   ============================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0e1a;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1629 50%, #0a0e1a 100%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(-10%, -10%); opacity: 1; }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 50px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-links a {
    color: #8b9bb0;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ffff;
}

.btn-login {
    background: linear-gradient(135deg, #00ffff, #0066ff);
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff !important;
    text-decoration: none;
}

/* Main Content */
.main-content {
    padding: 100px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #00ffff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #8b9bb0;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #00ffff;
}

.stat-label {
    color: #8b9bb0;
    font-size: 14px;
    margin-top: 5px;
}

/* Section Styles */
.section {
    padding: 80px 50px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #6b7c93;
    margin-bottom: 50px;
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(15, 22, 41, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 35px;
    color: #00ffff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #8b9bb0;
    line-height: 1.6;
}

/* Providers Grid */
.providers-section {
    background: rgba(0, 255, 255, 0.02);
    border-radius: 30px;
    padding: 50px;
    margin-top: 30px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.provider-card {
    background: rgba(15, 22, 41, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.provider-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
}

.provider-card i {
    font-size: 30px;
    color: #00ffff;
    margin-bottom: 10px;
}

.provider-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.provider-card p {
    font-size: 11px;
    color: #6b7c93;
}

/* Games Showcase */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.game-card {
    background: rgba(15, 22, 41, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    padding: 20px;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
}

.game-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.game-icon i {
    font-size: 30px;
    color: #00ffff;
}

.game-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.game-card p {
    font-size: 11px;
    color: #6b7c93;
}

/* API Checker */
.api-checker {
    background: rgba(15, 22, 41, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.api-checker h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #00ffff;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #8b9bb0;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: #00ffff;
}

.api-response {
    margin-top: 20px;
    padding: 15px;
    background: #0a0e1a;
    border-radius: 10px;
    font-family: monospace;
    font-size: 13px;
    display: none;
}

/* Code Block */
.code-block {
    background: #0a0e1a;
    border: 1px solid #1a1a2e;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.code-block pre {
    font-family: monospace;
    font-size: 13px;
    color: #00ff88;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 30px;
    margin-top: 50px;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc, #006699);
    padding: 15px 40px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.telegram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.telegram-btn i {
    font-size: 28px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6b7c93;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00ffff, #0066ff);
    padding: 14px 35px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-outline {
    border: 2px solid #00ffff;
    background: transparent;
    padding: 12px 33px;
    border-radius: 40px;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .section {
        padding: 50px 20px;
    }
    .stats-row {
        gap: 30px;
    }
    .stat-number {
        font-size: 32px;
    }
    .main-content {
        padding: 80px 20px 30px;
    }
}