/* Import Futuristic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles - Modern Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* iOS Touch Optimization */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for specific elements */
input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* iOS Safari specific fixes - merged with main body styles */

/* Safari flexbox fixes */
.container, .form-container, .stats-container {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/* Safari gradient fixes */
.gradient-bg, .hero-section, .stats-section {
    background-attachment: scroll; /* Safari doesn't support fixed gradients well */
}

/* Safari animation performance */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Safari input styling fixes */
input[type="search"] {
    appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/* Safari button fixes */
button, input[type="submit"], input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
}

/* iOS Performance Optimizations */
/* Reduce animations on low-power devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize images for iOS */
img {
    -webkit-optimize-contrast: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Hardware acceleration for smooth scrolling */
.container, .hero-section, .stats-section {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* Optimize font rendering for iOS */
body, input, textarea, select, button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reduce repaints and reflows */
.chart-container, .stats-grid, .form-group {
    contain: layout style paint;
}

/* iOS specific media queries for better performance */
@media screen and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) {
    /* iPhone X/XS/11 Pro optimizations */
    .container {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@media screen and (max-device-width: 896px) and (-webkit-device-pixel-ratio: 2) {
    /* iPhone XR/11 optimizations */
    .hero-section {
        min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
}

/* Prevent zoom on input focus for iOS */
input, select, textarea {
    font-size: 16px !important;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    background-clip: padding-box;
}

/* iOS form field improvements */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px !important;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #e1e5e9;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* iOS button styling */
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    cursor: pointer;
    touch-action: manipulation;
    transition: all 0.3s ease;
}

/* Improve touch targets for iOS */
a, button, [role="button"], input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Neon Glow Animation */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 4px rgba(79, 195, 247, 0.3), 0 0 8px rgba(79, 195, 247, 0.2), 0 0 12px rgba(79, 195, 247, 0.15);
    }
    50% {
        box-shadow: 0 0 8px rgba(186, 104, 200, 0.4), 0 0 16px rgba(186, 104, 200, 0.3), 0 0 24px rgba(186, 104, 200, 0.2);
    }
    100% {
        box-shadow: 0 0 4px rgba(79, 195, 247, 0.3), 0 0 8px rgba(79, 195, 247, 0.2), 0 0 12px rgba(79, 195, 247, 0.15);
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

body {
    font-family: 'Exo 2', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 25%, #252540 50%, #2a2a45 75%, #1f1f2a 100%);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* iOS Safari specific fixes */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

/* Futuristic Grid Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 195, 247, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 195, 247, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(79, 195, 247, 0.015) 0%, rgba(186, 104, 200, 0.01) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles - Futuristic Design */
.header {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08) 0%, rgba(186, 104, 200, 0.08) 50%, rgba(129, 199, 132, 0.08) 100%);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(79, 195, 247, 0.12), 0 0 50px rgba(186, 104, 200, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
    border-bottom: 2px solid rgba(79, 195, 247, 0.2);
    border-radius: 0 0 20px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-section {
    flex: 1;
    min-width: 250px;
}

.logo.title {
    font-family: 'Orbitron', monospace;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(79, 195, 247, 0.5), 0 0 30px rgba(186, 104, 200, 0.3);
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, #4fc3f7, #ba68c8, #81c784);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0 0 0;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.3);
}

/* Hero Section - Futuristic */
.hero-section {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.04), rgba(186, 104, 200, 0.04), rgba(129, 199, 132, 0.04));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(79, 195, 247, 0.06), rgba(186, 104, 200, 0.06), transparent);
    animation: shimmer 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 5s ease-in-out infinite;
    pointer-events: none;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4fc3f7, #ba68c8, #81c784, #ffb74d);
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0;
    position: relative;
    text-shadow: 0 0 20px rgba(79, 195, 247, 0.3);
}



.hero-subtitle {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-top: 24px;
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.global-counter {
    margin: 1.5rem 0 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-container {
        background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(186, 104, 200, 0.1));
        backdrop-filter: blur(20px);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 25px;
        padding: 30px 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        box-shadow: 
            0 0 25px rgba(79, 195, 247, 0.2),
            0 0 50px rgba(186, 104, 200, 0.1),
            inset 0 0 30px rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: neonGlow 4s ease-in-out infinite;
        min-width: 350px;
        max-width: 90vw;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .counter-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.8s ease;
        z-index: 1;
    }
    
    .counter-container:hover::before {
        left: 100%;
    }
    
    .counter-container > * {
        position: relative;
        z-index: 2;
    }

.counter-container:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.2), 0 0 40px rgba(186, 104, 200, 0.12);
    border-color: rgba(79, 195, 247, 0.35);
}

.counter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.counter-label {
    font-size: 24px;
    font-weight: 800;
    color: #4fc3f7;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(79, 195, 247, 0.6),
        0 0 20px rgba(79, 195, 247, 0.4),
        0 0 30px rgba(79, 195, 247, 0.2);
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, #4fc3f7, #ba68c8, #81c784);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    display: block;
    text-align: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 69, 0, 0.1));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    animation: livePulse 2s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: liveDotBlink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.live-text {
    font-size: 12px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
}

.counter-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 800;
    color: #4fc3f7;
    min-width: 70px;
    text-align: center;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.4);
    animation: pulseGlow 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.counter-number.updating {
    animation: counterUpdate 0.6s ease-in-out;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.counter-number.error {
    animation: counterError 0.5s ease-in-out;
    color: #ef4444;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.counter-number.success {
    animation: counterSuccess 0.8s ease-in-out;
}

@keyframes counterUpdate {
    0% { transform: scale(1) rotateY(0deg); }
    50% { transform: scale(1.15) rotateY(180deg); }
    100% { transform: scale(1) rotateY(360deg); }
}

@keyframes counterError {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-8px) scale(1.05); }
    75% { transform: translateX(8px) scale(1.05); }
}

@keyframes counterSuccess {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); color: #10b981; }
    50% { transform: scale(1.05); color: #34d399; }
    100% { transform: scale(1); }
}

/* Counter Status Indicator */
.counter-status {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
    z-index: 3;
}

.counter-status.loading {
    background: #f59e0b;
    animation: statusPulse 1s infinite;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.counter-status.error {
    background: #ef4444;
    animation: statusBlink 0.5s infinite alternate;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.counter-status.offline {
    background: #6b7280;
    box-shadow: 0 0 8px rgba(107, 114, 128, 0.4);
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes statusBlink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Counter Loading Animation */
.counter-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    border-top-color: #4fc3f7;
    animation: counterSpin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes counterSpin {
    to { transform: rotate(360deg); }
}

/* Counter Info Text */
.counter-info {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.5px;
}

.counter-info.highlight {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
    font-weight: 600;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .counter-container {
        padding: 20px 30px;
        min-width: 280px;
        gap: 12px;
    }
    
    .counter-number {
        font-size: 1.2rem;
    }
    
    .counter-label {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .counter-status {
        top: 12px;
        right: 15px;
        width: 10px;
        height: 10px;
    }
}

.counter-description {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 0 0;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cairo', sans-serif;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { transform: translateX(100%); opacity: 0.3; }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Social Media Links */
.social-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.15) rotate(5deg);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), 0 0 50px rgba(255, 0, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.8);
}

.social-btn i {
    font-size: 1.2rem;
}

.tiktok {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.8), rgba(0, 242, 234, 0.8));
    backdrop-filter: blur(10px);
}

.tiktok:hover {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.8), 0 0 60px rgba(0, 242, 234, 0.4);
}

.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(255, 69, 0, 0.8));
    backdrop-filter: blur(10px);
}

.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #ff4500);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 69, 0, 0.4);
}

.instagram {
    background: linear-gradient(135deg, rgba(64, 93, 230, 0.8), rgba(88, 81, 219, 0.8), rgba(131, 58, 180, 0.8), rgba(193, 53, 132, 0.8));
    backdrop-filter: blur(10px);
}

.instagram:hover {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0 0 30px rgba(131, 58, 180, 0.8), 0 0 60px rgba(193, 53, 132, 0.4);
}

.discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.8), rgba(114, 137, 218, 0.8));
    backdrop-filter: blur(10px);
}

.discord:hover {
    background: linear-gradient(135deg, #5865f2, #7289da);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.8), 0 0 60px rgba(114, 137, 218, 0.4);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.section {
    margin-bottom: 60px;
}

/* Remove old section-title styles - now using .main-title in hero section */

/* Interactive Buttons */
.buttons-section {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    gap: 2rem;
}

.interactive-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Get Started Button - Neon Glow */
.get-started-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-started-btn {
    background: linear-gradient(135deg, #00ffff, #0099ff);
    color: #000000;
    border: 2px solid #00ffff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-transform: uppercase;
    /* iOS specific optimizations */
    -webkit-tap-highlight-color: rgba(0, 255, 255, 0.3);
    touch-action: manipulation;
    min-height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.get-started-btn::before {
    content: '';
    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;
}

.get-started-btn:hover::before {
    left: 100%;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #ff00ff, #ff6600);
    border-color: #ff00ff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.get-started-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.get-started-btn i {
    margin-right: 0.5rem;
    font-size: 1.4rem;
}



.info-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff00ff, #9900ff);
    color: white;
    border: 2px solid #ff00ff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-btn:hover {
    background: linear-gradient(135deg, #00ffff, #0099ff);
    border-color: #00ffff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7), 0 0 50px rgba(0, 255, 255, 0.3);
}

.info-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.25);
}

.info-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.info-btn:hover i {
    transform: rotate(360deg);
}

.info-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.info-btn:hover::before {
    left: 100%;
}

/* Hidden Content */
.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.content-card.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.4s ease-out;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.close-btn {
    background: linear-gradient(135deg, #ff0080, #ff6600);
    color: white;
    border: 2px solid #ff0080;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5), 0 0 30px rgba(255, 0, 128, 0.2);
}

.close-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.8), 0 0 50px rgba(255, 0, 128, 0.4);
    border-color: #00ffff;
    background: linear-gradient(135deg, #00ffff, #0099ff);
}

.card-body {
    padding-top: 10px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 255, 255, 0.03) 50%, rgba(255, 0, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2), 0 0 50px rgba(255, 0, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.content-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3), 0 0 80px rgba(255, 0, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.content-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e2e8f0;
    text-align: justify;
}

.content-card strong {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Footer - Futuristic */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 15, 35, 0.9) 100%);
    backdrop-filter: blur(20px);
    color: #e2e8f0;
    text-align: center;
    padding: 40px 0;
    margin-top: auto;
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    box-shadow: 0 -5px 20px rgba(79, 195, 247, 0.08);
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.2);
}

/* Hamburger Menu Button */
.menu-toggle {
    background: linear-gradient(45deg, rgba(79, 195, 247, 0.1), rgba(186, 104, 200, 0.1));
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    gap: 4px;
}

.menu-toggle:hover {
    transform: scale(1.05);
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 0 25px rgba(79, 195, 247, 0.3);
    background: linear-gradient(45deg, rgba(79, 195, 247, 0.15), rgba(186, 104, 200, 0.15));
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: linear-gradient(45deg, #4fc3f7, #ba68c8);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(79, 195, 247, 0.5);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -450px;
    width: 420px;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    backdrop-filter: blur(25px);
    border-right: 2px solid rgba(79, 195, 247, 0.4);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(79, 195, 247, 0.15);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid rgba(79, 195, 247, 0.3);
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(186, 104, 200, 0.08));
    position: relative;
    overflow: hidden;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-brand i {
    font-size: 28px;
    color: #4fc3f7;
    text-shadow: 0 0 15px rgba(79, 195, 247, 0.6);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sidebar-title {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 800;
    color: #4fc3f7;
    margin: 0;
    text-shadow: 0 0 12px rgba(79, 195, 247, 0.5);
    letter-spacing: 2px;
    background: linear-gradient(45deg, #4fc3f7, #ba68c8, #81c784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close {
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(255, 112, 67, 0.1));
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e91e63;
    font-size: 18px;
}

.sidebar-close:hover {
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.2), rgba(255, 112, 67, 0.2));
}

.sidebar-content {
    padding: 20px 0;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin: 0;
    border-bottom: 1px solid rgba(79, 195, 247, 0.1);
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    text-decoration: none;
    color: #f7fafc;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.15), transparent);
    transition: left 0.6s ease;
}

.sidebar-link:hover::before {
    left: 100%;
}

.sidebar-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4fc3f7, #ba68c8);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.sidebar-link:hover::after {
    transform: scaleY(1);
}

.sidebar-link:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.12), rgba(186, 104, 200, 0.12));
    transform: translateX(8px);
    box-shadow: inset 0 0 25px rgba(79, 195, 247, 0.15), 0 5px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(186, 104, 200, 0.1));
    border: 1px solid rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-icon i {
    font-size: 22px;
    color: #4fc3f7;
    text-shadow: 0 0 12px rgba(79, 195, 247, 0.6);
    transition: all 0.3s ease;
}

.sidebar-link:hover .sidebar-icon {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(186, 104, 200, 0.2));
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.3);
    transform: scale(1.05);
}

.sidebar-link:hover .sidebar-icon i {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(79, 195, 247, 0.8);
    transform: scale(1.1);
}

.sidebar-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-title-text {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f7fafc;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.sidebar-link:hover .sidebar-title-text {
    color: #4fc3f7;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.4);
}

.sidebar-description {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
    opacity: 0.9;
    font-weight: 400;
    transition: all 0.3s ease;
    margin: 0;
}

.sidebar-link:hover .sidebar-description {
    color: #cbd5e0;
    opacity: 1;
}

.sidebar-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(79, 195, 247, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-arrow i {
    font-size: 14px;
    color: #4fc3f7;
    transition: all 0.3s ease;
}

.sidebar-link:hover .sidebar-arrow {
    background: rgba(79, 195, 247, 0.2);
    transform: translateX(5px);
}

.sidebar-link:hover .sidebar-arrow i {
    color: #ffffff;
    transform: scale(1.2);
}

.sidebar-footer {
    margin-top: auto;
    padding: 25px 30px;
    border-top: 2px solid rgba(79, 195, 247, 0.2);
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.05), rgba(186, 104, 200, 0.05));
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(186, 104, 200, 0.08));
    border-radius: 10px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.12), rgba(186, 104, 200, 0.12));
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.1);
}

.stat-item i {
    font-size: 18px;
    color: #4fc3f7;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
    width: 20px;
    text-align: center;
}

.stat-item span {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #f7fafc;
    letter-spacing: 0.5px;
}

.stat-item:hover span {
    color: #4fc3f7;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar-menu {
        width: 100%;
        left: -100%;
        padding: 0;
    }
    
    .sidebar-header {
        padding: 25px 20px;
    }
    
    .social-nav {
        gap: 10px;
    }
    
    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .social-btn i {
        font-size: 1rem;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .sidebar-link {
        padding: 22px 25px;
        gap: 18px;
        margin: 0 15px 8px;
        border-radius: 12px;
    }
    
    .sidebar-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .sidebar-icon i {
        font-size: 22px;
    }
    
    .sidebar-title-text {
        font-size: 16px;
        font-weight: 600;
    }
    
    .sidebar-description {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Modal Styles - Simplified */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.modal-content {
    background: #ffffff;
    margin: 3% auto;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.language-modal {
    width: 90%;
    max-width: 500px;
}

.survey-modal {
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* Survey Navigation Styles - Simplified */
.survey-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
    flex-shrink: 0;
    min-height: 70px;
}

.question-counter {
    background: #4f46e5;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
    position: relative;
}

.nav-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b9d 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4), 0 4px 15px rgba(255, 142, 83, 0.3);
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #e91e63 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6), 0 6px 20px rgba(255, 142, 83, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}

.nav-btn:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.prev-btn {
    background: linear-gradient(135deg, #9c88ff 0%, #8c7ae6 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(156, 136, 255, 0.4), 0 4px 15px rgba(140, 122, 230, 0.3);
}

.prev-btn:hover {
    background: linear-gradient(135deg, #7b68ee 0%, #6c5ce7 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(156, 136, 255, 0.6), 0 6px 20px rgba(140, 122, 230, 0.4);
}

.prev-btn:focus {
    outline: 2px solid #6b7280;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(107, 114, 128, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #00d2ff 100%);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4), 0 4px 15px rgba(58, 123, 213, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-size: 200% 200%;
    animation: buttonGlow 3s ease-in-out infinite;
    /* iOS specific optimizations */
    -webkit-tap-highlight-color: rgba(0, 210, 255, 0.3);
    touch-action: manipulation;
    min-height: 50px;
    appearance: none;
    font-size: 16px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 50%, #00c9ff 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.6), 0 6px 20px rgba(58, 123, 213, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    animation-duration: 1.5s;
}

.submit-btn:focus {
    outline: 2px solid #059669;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.modal-header {
    background: #4f46e5;
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Language Selection */
.language-buttons {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.lang-btn:hover {
    background: #3730a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Survey Form */
.survey-form {
    padding: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.question-group {
    margin: 0;
    padding: 24px 32px;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    transition: all 0.2s ease;
    border: none;
    min-height: 0;
    max-height: calc(85vh - 180px);
}



.question-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.4;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.question-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4f46e5;
    border-radius: 2px;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 18px;
    border: 2px solid rgba(255, 107, 107, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.1), 0 1px 5px rgba(78, 205, 196, 0.05);
    font-weight: 700;
}

.option-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateX(6px) translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2), 0 3px 10px rgba(78, 205, 196, 0.15);
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff6b6b;
    cursor: pointer;
    margin: 0;
    position: relative;
    z-index: 2;
    transform: scale(1.4);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
}

.option-item input[type="radio"]:focus,
.option-item input[type="checkbox"]:focus {
    outline: 4px solid rgba(255, 107, 107, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3), 0 0 15px rgba(78, 205, 196, 0.4);
}

.option-item label {
    flex: 1;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.2s ease;
}

.option-item:hover label {
    color: #1f2937;
}

.text-input {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px 20px;
    border: 3px solid transparent;
    border-radius: 20px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1) border-box;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1), 0 2px 8px rgba(78, 205, 196, 0.05);
}

.text-input:focus {
    outline: none;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #ff6b6b, #ff8e53, #4ecdc4) border-box;
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.2), 0 8px 25px rgba(78, 205, 196, 0.15);
    transform: translateY(-3px) scale(1.02);
}

.text-input:hover {
    border-color: #cbd5e1;
}

.textarea-input {
    min-height: 120px;
    resize: vertical;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px 20px;
    border: 3px solid transparent;
    border-radius: 20px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1) border-box;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1), 0 2px 8px rgba(78, 205, 196, 0.05);
}

.textarea-input:focus {
    outline: none;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #ff6b6b, #ff8e53, #4ecdc4) border-box;
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.2), 0 8px 25px rgba(78, 205, 196, 0.15);
    transform: translateY(-3px) scale(1.02);
}

.textarea-input:hover {
    border-color: #cbd5e1;
}

.form-actions {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* iOS specific optimizations */
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
    touch-action: manipulation;
    min-height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px !important;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .survey-modal {
        width: 90%;
        max-width: 800px;
    }
    
    .question-group {
        padding: 20px 28px;
    }
    
    .question-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .survey-modal {
        width: 95%;
        max-width: 700px;
    }
    
    .question-group {
        padding: 18px 24px;
    }
    
    .question-options {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
        border-radius: 0 0 15px 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logo-section {
        min-width: auto;
        order: 1;
    }
    
    .logo.title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-top: 8px;
    }
    
    .header-right {
        order: 2;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
    
    .social-nav {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        min-width: 45px;
        min-height: 45px;
    }
    
    .menu-toggle {
        order: 3;
        margin-top: 10px;
    }
    
    /* Counter Mobile Optimizations */
    .counter-container {
        min-width: 280px;
        max-width: 95vw;
        padding: 25px 30px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .counter-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .counter-label {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .live-indicator {
        padding: 5px 10px;
        border-radius: 15px;
    }
    
    .live-text {
        font-size: 11px;
    }
    
    .counter-number {
        font-size: 1.6rem;
        min-width: 60px;
    }
    
    .counter-description {
        font-size: 11px;
        margin-top: 5px;
    }
    
    .hero-section {
        padding: 50px 0;
        margin: 0 10px;
    }
    
    .main-title {
        font-size: 2.8rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .main-title::after {
        font-size: 2rem;
        top: -18px;
        right: -30px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 20px;
        padding: 0 20px;
        line-height: 1.5;
        max-width: 90vw;
    }
    
    .global-counter {
        margin: 2rem 0;
        padding: 0 10px;
    }
    
    .content-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .content-card h3 {
        font-size: 1.5rem;
    }
    
    .content-card p {
        font-size: 1rem;
    }
    
    /* Interactive buttons responsive */
    .interactive-buttons {
        gap: 25px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }
    
    .get-started-btn {
        min-width: 250px;
        max-width: 90vw;
        padding: 18px 30px;
        font-size: 1.1rem;
        border-radius: 40px;
        min-height: 50px;
    }
    
    .info-btn {
        min-width: 220px;
        max-width: 90vw;
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 35px;
        min-height: 48px;
    }
    
    .buttons-section {
        padding: 40px 0;
        margin: 0 10px;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
    }
    
    .language-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lang-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .survey-form {
        padding: 1rem;
    }
    
    .survey-modal {
        width: 98%;
        max-width: none;
        margin: 5px;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 16px 20px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .question-group {
        padding: 16px 20px;
        margin-bottom: 0;
        max-height: calc(95vh - 160px);
        overflow-y: auto;
    }
    
    .question-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .option-item {
        padding: 12px 16px;
        margin: 8px 0;
        border-radius: 10px;
    }
    
    .option-item label {
        font-size: 0.95rem;
    }
    
    .text-input, .textarea-input {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .survey-navigation {
        padding: 12px 20px;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
        min-height: 100px;
    }
    
    .question-counter {
        order: -1;
        align-self: center;
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 16px;
    }
    
    .nav-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: auto;
        max-width: 180px;
        border-radius: 6px;
    }
    
    .survey-navigation .nav-btn:first-of-type {
        order: 1;
    }
    
    .survey-navigation .nav-btn:last-of-type {
        order: 2;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }
    
    .logo.title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .social-nav {
        gap: 8px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .social-btn i {
        font-size: 0.9rem;
    }
    
    /* Counter Extra Small Screen Optimizations */
    .counter-container {
        min-width: 250px;
        max-width: 98vw;
        padding: 20px 25px;
        margin: 0 5px;
        border-radius: 18px;
    }
    
    .counter-label {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
    
    .live-indicator {
        padding: 4px 8px;
        border-radius: 12px;
    }
    
    .live-text {
        font-size: 10px;
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
    }
    
    .counter-number {
        font-size: 1.4rem;
        min-width: 50px;
    }
    
    .counter-description {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .hero-section {
        padding: 40px 0;
        margin: 0 8px;
    }
    
    .main-title {
        font-size: 2.2rem;
        letter-spacing: 0.3px;
        line-height: 1.1;
        margin-bottom: 15px;
        padding: 0 12px;
    }
    
    .main-title::after {
        font-size: 1.7rem;
        top: -15px;
        right: -25px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 18px;
        padding: 0 15px;
        line-height: 1.4;
        max-width: 95vw;
    }
    
    .global-counter {
        margin: 1.8rem 0;
        padding: 0 8px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    /* Survey specific mobile styles for very small screens */
    .survey-modal {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 12px 16px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .question-group {
        padding: 12px 16px;
        flex: 1;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .question-title {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .option-item {
        padding: 10px 14px;
        margin: 6px 0;
        border-radius: 8px;
    }
    
    .option-item label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .text-input, .textarea-input {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .textarea-input {
        min-height: 100px;
    }
    
    .survey-navigation {
        padding: 10px 16px;
        gap: 8px;
        flex-shrink: 0;
        min-height: 90px;
    }
    
    .question-counter {
        padding: 6px 14px;
        font-size: 0.85rem;
        border-radius: 16px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .get-started-btn {
        font-size: 1.05rem;
        padding: 16px 28px;
        min-width: 220px;
        max-width: 95vw;
        border-radius: 35px;
        min-height: 48px;
    }
    
    .info-btn {
        min-width: 200px;
        max-width: 95vw;
        padding: 14px 22px;
        font-size: 0.95rem;
        border-radius: 30px;
        min-height: 46px;
    }
    
    .buttons-section {
        padding: 35px 0;
        margin: 0 8px;
    }
    
    .interactive-buttons {
        gap: 20px;
        padding: 0 10px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 600px) {
    .survey-modal {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 14px 18px;
        background: #4f46e5;
        border-radius: 0;
    }
    
    .modal-header h2 {
        font-size: 1.15rem;
        font-weight: 500;
    }
    
    .close-btn {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    
    .question-group {
        padding: 14px 18px;
        max-height: calc(100vh - 150px);
    }
    
    .question-title {
        font-size: 1.05rem;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .question-title::after {
        width: 50px;
        height: 2px;
    }
    
    .question-options {
        gap: 10px;
    }
    
    .option-item {
        padding: 12px 16px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .option-item input[type="radio"],
    .option-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .option-item label {
        font-size: 0.92rem;
        line-height: 1.4;
    }
    
    .text-input, .textarea-input {
        padding: 12px 16px;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    
    .textarea-input {
        min-height: 110px;
    }
    
    .survey-navigation {
        padding: 12px 18px;
        gap: 10px;
        min-height: 95px;
        background: #f8fafc;
    }
    
    .question-counter {
        padding: 7px 15px;
        font-size: 0.88rem;
        border-radius: 18px;
    }
    
    .nav-btn {
        padding: 9px 18px;
        font-size: 0.92rem;
        border-radius: 8px;
        max-width: 160px;
    }
}

/* Tablet Landscape Optimization */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .survey-modal {
        width: 85%;
        max-width: 750px;
        max-height: 90vh;
    }
    
    .question-group {
        padding: 20px 30px;
        max-height: calc(90vh - 170px);
    }
    
    .question-title {
        font-size: 1.25rem;
        margin-bottom: 22px;
    }
    
    .option-item {
        padding: 14px 18px;
    }
    
    .survey-navigation {
        padding: 16px 30px;
        min-height: 75px;
    }
}

/* Touch-friendly improvements */
@media (pointer: coarse) {
    .option-item {
        min-height: 48px;
        padding: 14px 18px;
    }
    
    .nav-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .question-counter {
        min-height: 36px;
    }
}

/* Professional Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    color: white;
}

.modal-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 25px 30px;
}

.modal-content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: center;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modal-btn-primary:hover::before {
    left: 100%;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 212, 255, 0.4);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-body {
        padding: 20px 25px;
    }
    
    .modal-footer {
        padding: 15px 25px 25px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-content p {
        font-size: 15px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Thank You Modal Animations */
@keyframes modalSlideRotate {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(-15deg) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(5deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glassShine {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) rotate(2deg);
    }
    66% {
        transform: translateY(4px) rotate(-1deg);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-12px) scale(1.1);
    }
    50% {
        transform: translateY(-6px) scale(1.05);
    }
    75% {
        transform: translateY(-10px) scale(1.08);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.2);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.content-card {
    animation: fadeInUp 0.6s ease-out;
}

.section:nth-child(2) .content-card {
    animation-delay: 0.2s;
}

.section:nth-child(3) .content-card {
    animation-delay: 0.4s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.social-btn {
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

/* Online Indicator Styles */
.online-indicator {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
    animation: onlinePulse 2s ease-in-out infinite;
    z-index: 10;
}

.online-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.online-text {
    font-size: 0.65rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes onlinePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Wisdom Team Section */
.wisdom-team {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4fc3f7, #ba68c8, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #4fc3f7, #ba68c8);
    border-radius: 2px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(186, 104, 200, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.3);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(79, 195, 247, 0.3);
    position: relative;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .wisdom-team {
        padding: 60px 15px;
    }
    
    .team-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 1.8rem;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-image {
        width: 80px;
        height: 80px;
    }
}

/* Thank You Modal Styles - Dark Theme */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container.thank-you-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f1f1f1;
    border-radius: 20px;
    padding: 30px;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.1);
    text-align: center;
    animation: modalSlideRotate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.modal-container.thank-you-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 204, 0, 0.1), transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.thank-you-header {
    background: transparent;
    border-bottom: none;
    position: relative;
    padding: 30px 35px 25px;
    text-align: center;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    opacity: 1;
    animation: iconFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.floating-emoji {
    font-size: 32px;
    display: inline-block;
    margin: 0 8px;
    animation: floatBounce 2s ease-in-out infinite;
}

.floating-emoji:nth-child(2) {
    animation-delay: 0.3s;
}

.floating-emoji:nth-child(3) {
    animation-delay: 0.6s;
}

.thank-you-title {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9800 50%, #ffcc00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    animation: borderGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.thank-you-body {
    background: transparent;
    position: relative;
    padding: 20px 30px 30px;
}



.thank-you-message {
    color: #f0f0f0;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.thank-you-message small {
    font-size: 0.9rem;
    color: #ffcc00;
    font-style: normal;
    display: block;
    margin-top: 15px;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffcc00 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Admin Button Styles */
.admin-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.admin-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    opacity: 1;
}

.admin-heart {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
}

/* Admin Modal Styles */
.admin-modal {
    max-width: 400px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-modal h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.admin-password-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.admin-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.admin-submit-btn, .admin-cancel-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-submit-btn {
    background: #4CAF50;
    color: white;
}

.admin-submit-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.admin-cancel-btn {
    background: #f44336;
    color: white;
}

.admin-cancel-btn:hover {
    background: #da190b;
    transform: translateY(-1px);
}

.admin-error {
    background: rgba(244, 67, 54, 0.2);
    color: #ffcdd2;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Statistics Modal Styles */
.statistics-modal {
    max-width: 90vw;
    max-height: 90vh;
    width: 1000px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    overflow: hidden;
}

.statistics-content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD700;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.chart-bar {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 15px;
}

.chart-label {
    min-width: 120px;
    font-weight: 500;
}

.chart-progress {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.chart-value {
    min-width: 40px;
    text-align: right;
    font-weight: bold;
    color: #FFD700;
}

@media (max-width: 768px) {
    .admin-button-container {
        bottom: 15px;
        right: 15px;
    }
    
    .admin-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .statistics-modal {
        width: 95vw;
        max-height: 85vh;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.thank-you-footer {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-top: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 0 0 20px 20px;
    padding: 25px 30px 30px;
    position: relative;
    backdrop-filter: blur(5px);
}

.thank-you-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffcc00, #667eea);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

.thank-you-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .thank-you-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.thank-you-btn {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 14px 28px;
    border-radius: 12px;
    color: #ffcc00;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.thank-you-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.thank-you-btn:hover::before {
    left: 100%;
}

.share-btn {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 183, 77, 0.1) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 14px 28px;
    border-radius: 12px;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.share-btn:hover::before {
    left: 100%;
}

.thank-you-btn:hover {
    background: linear-gradient(135deg, #ffcc00 0%, #667eea 100%);
    color: #1a1a2e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.4);
    border-color: #ffcc00;
}

.share-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffb74d 100%);
    color: #1a1a2e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
    border-color: #ff6b6b;
}

.btn-sparkles {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.btn-sparkles span {
    animation: sparkle 1s ease-in-out infinite;
}

.btn-sparkles span:nth-child(2) {
    animation-delay: 0.3s;
}

.btn-sparkles span:nth-child(3) {
    animation-delay: 0.6s;
}

/* Simple Animations */
@keyframes gentleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Live Counter Animations */
@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    }
}

@keyframes liveDotBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.pulse-circle {
    border: 2px solid #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

/* Recent submissions styles */
.recent-submissions {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.recent-submissions h3 {
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.submissions-list {
    max-height: 300px;
    overflow-y: auto;
}

.submission-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #4CAF50;
}

.submission-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.submission-id {
    color: #4CAF50;
    font-weight: bold;
    font-size: 0.9em;
}

.submission-lang {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.submission-date {
    color: #ccc;
    font-size: 0.8em;
}



/* YouTube Videos Section */
.youtube-videos-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.videos-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.videos-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-info p {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Videos */
@media (max-width: 768px) {
    .youtube-videos-section {
        padding: 60px 15px;
        margin-top: 40px;
    }
    
    .videos-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-overlay {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .videos-title {
        font-size: 1.8rem;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
}

/* Advanced Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

.notification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 26px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transform: translateX(450px) rotateY(15deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 420px;
    transform-style: preserve-3d;
}

.notification.show {
    transform: translateX(0) rotateY(0deg) scale(1);
    opacity: 1;
}

.notification:hover {
    transform: translateX(-5px) rotateY(-2deg) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 6px 16px rgba(0, 0, 0, 0.3);
}

.notification.success {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 50%, #81C784 100%);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification.error {
    background: linear-gradient(135deg, #f44336 0%, #e57373 50%, #ef5350 100%);
    border-color: rgba(244, 67, 54, 0.3);
    box-shadow: 0 12px 40px rgba(244, 67, 54, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification.warning {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 50%, #ffc107 100%);
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 152, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification.info {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 50%, #64B5F6 100%);
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification.duplicate {
    background: linear-gradient(135deg, #9c27b0 0%, #ab47bc 50%, #ba68c8 100%);
    border-color: rgba(156, 39, 176, 0.3);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 0;
}

.notification::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: rotate 8s linear infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.notification-icon {
    font-size: 28px;
    animation: iconBounce 0.8s ease-out, iconGlow 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.1);
    }
    60% {
        transform: translateY(-5px) scale(1.05);
    }
}

@keyframes iconGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.notification-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.notification-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.notification-message {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.notification-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 0 0 16px 16px;
    animation: progressBar 5s linear;
    box-shadow: 0 -2px 8px rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.notification-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .notification {
        min-width: auto;
        max-width: none;
        transform: translateY(-120px) scale(0.95);
        padding: 16px 20px;
        border-radius: 12px;
    }
    
    .notification.show {
        transform: translateY(0) scale(1);
    }
    
    .notification:hover {
        transform: translateY(-2px) scale(1.02);
    }
    
    .notification-icon {
        font-size: 24px;
    }
    
    .notification-title {
        font-size: 16px;
    }
    
    .notification-message {
        font-size: 14px;
    }
    
    .notification-close {
        font-size: 18px;
        padding: 5px;
    }
}

/* Animation for share success message */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Duplicate Vote Modal Styles */
.duplicate-vote-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #444;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 450px;
    width: 90%;
    padding: 0;
    overflow: hidden;
    animation: duplicateModalSlide 0.4s ease-out;
}

.duplicate-vote-content {
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
}

.duplicate-vote-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.3));
}

.duplicate-vote-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6b6b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.duplicate-vote-message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.kaffer-text {
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.duplicate-vote-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-website-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.share-website-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.share-icon {
    font-size: 1.1rem;
}

.close-duplicate-btn {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.close-duplicate-btn:hover {
    background: linear-gradient(135deg, #777 0%, #666 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes duplicateModalSlide {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 480px) {
    .duplicate-vote-modal {
        max-width: 95%;
        margin: 20px;
    }
    
    .duplicate-vote-content {
        padding: 30px 20px;
    }
    
    .duplicate-vote-title {
        font-size: 1.5rem;
    }
    
    .duplicate-vote-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-website-btn,
    .close-duplicate-btn {
        width: 100%;
        max-width: 250px;
    }
}