/* ===== VARIANT 01: NEON GLOW THEME ===== */
/* Futuristic dark theme with glowing neon effects */

:root {
    --neon-cyan: #00f5ff;
    --neon-pink: #ff00ff;
    --neon-green: #39ff14;
    --neon-yellow: #fff700;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --border-glow: rgba(0, 245, 255, 0.3);
    --font-primary: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.neon-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
    animation: moveLine 8s linear infinite;
    opacity: 0.3;
}

.neon-line:nth-child(1) { left: 20%; animation-delay: 0s; }
.neon-line:nth-child(2) { left: 50%; animation-delay: 2s; }
.neon-line:nth-child(3) { left: 80%; animation-delay: 4s; }

@keyframes moveLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.logo-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.logo-highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.viral-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.5); }
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.badge-text {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--neon-cyan);
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.glitch {
    color: var(--text-primary);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.subtitle-glow {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
    font-size: 0.5em;
}

.view-count {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 5px;
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    font-family: var(--font-display);
    font-weight: 600;
}

/* Video Section */
.video-section {
    padding: 40px 20px 80px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--neon-cyan);
}

.frame-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.video-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.video-placeholder {
    position: relative;
    padding-top: 56.25%;
    background: var(--bg-darker);
}

.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-info {
    padding: 25px 0;
    text-align: center;
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.video-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.neon-box {
    padding: 10px 20px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
}

.meta-icon { font-size: 1.2rem; }

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.02), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.title-glow {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--neon-cyan);
    letter-spacing: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
    border-color: var(--neon-cyan);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon.instagram { background: linear-gradient(45deg, #f09433, #dc2743); color: white; }
.stat-icon.facebook { background: #1877F2; color: white; }
.stat-icon.youtube { background: #FF0000; color: white; }
.stat-icon.twitter { background: #000; color: white; border: 1px solid #333; }

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.stat-status {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Creator Section */
.creator-section {
    padding: 80px 20px;
}

.creator-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 40px;
}

.creator-image-wrapper {
    position: relative;
}

.creator-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.creator-image[data-thumbnail] span { display: none; }

.creator-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.creator-info {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.creator-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    margin-bottom: 10px;
}

.creator-title {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.creator-bio {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433, #dc2743); color: white; }
.social-btn.facebook { background: #1877F2; color: white; }
.social-btn.youtube { background: #FF0000; color: white; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Permission Section */
.permission-section {
    padding: 60px 20px;
}

.permission-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    padding: 30px;
}

.permission-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.permission-box p {
    color: var(--text-secondary);
}

/* Share Section */
.share-section {
    padding: 60px 20px;
}

.share-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 40px;
}

.share-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.share-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.share-btn.whatsapp { background: #25D366; color: white; }
.share-btn.telegram { background: #0088cc; color: white; }
.share-btn.copy { background: var(--bg-darker); color: var(--neon-cyan); border: 1px solid var(--neon-cyan); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glow);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .creator-card { padding: 25px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .share-buttons { flex-direction: column; }
}

/* Page Styles for other pages */
.page-header {
    padding: 120px 20px 60px;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.05), transparent);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    margin-bottom: 10px;
}

.page-subtitle {
    color: var(--text-secondary);
}

.page-content {
    padding: 60px 20px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-list {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-glow);
    margin-bottom: 20px;
}

.legal-list ul { list-style: none; }

.legal-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.legal-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-glow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    color: var(--bg-dark);
    border: none;
    border-radius: 25px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

