/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        text-decoration:none;

}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.4;
    overflow-x: hidden;
}

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

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
    opacity: 0.2;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 35px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    margin-left: 50px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-auth {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: #4a9eff;
    transform: translateY(-1px);
}

/* Main Content */
.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

/* Live Watch Button */
.live-button-container {
    margin-bottom: 30px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;}

.btn-live-watch {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 25px 100px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.play-icon {
    font-size: 14px;
}

.btn-live-watch:hover {
    background: #4a9eff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 144, 255, 0.4);
}

/* Live Status */
.live-status {
    margin-bottom: 25px;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #4a9eff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.viewer-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #cccccc;
    margin-top: 10px;
    margin-bottom: 10px;
}

.viewer-dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
}

.viewer-number {
    color: #1e90ff;
    font-weight: 600;
}

/* Quality Badges */
.quality-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-green {
    background: #22c55e;
    color: white;

    
}

.badge-blue {
    background: #3b82f6;
    color: white;
}

/* Hero Content */
.hero-content {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
}

.icon-play {
    color: #22c55e;
}

.icon-flash {
    color: #fbbf24;
}

.icon-shield {
    color: #3b82f6;
}

.icon-people {
    color: #8b5cf6;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav {
        margin-left: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .quality-badges {
        flex-wrap: wrap;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn-live-watch {
        
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .feature-card {
        border-width: 2px;
    }
    
    .badge {
        border: 1px solid currentColor;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
.nav-link:focus {
    outline: 2px solid #1e90ff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .bg-video {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .header {
        background: white;
        border-bottom: 1px solid black;
    }
}
