/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo-inspired color palette - vibrant and energetic */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #f7931e;
    --accent-color: #ffd23f;
    --tertiary-color: #06ffa5;
    --quaternary-color: #3d5a80;
    
    /* Neutral colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #8a8a8a;
    --bg-primary: #ffffff;
    --bg-secondary: #fafbfc;
    --bg-dark: #0f1419;
    --border-color: #e1e8ed;
    
    /* Shadows with logo-inspired tones */
    --shadow-sm: 0 1px 3px 0 rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 12px -2px rgba(255, 107, 53, 0.15), 0 2px 4px -2px rgba(255, 107, 53, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(255, 107, 53, 0.2), 0 4px 6px -4px rgba(255, 107, 53, 0.15);
    --shadow-xl: 0 20px 40px -10px rgba(255, 107, 53, 0.25), 0 8px 10px -6px rgba(255, 107, 53, 0.2);
    
    /* Logo-inspired gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd23f 0%, #06ffa5 100%);
    --gradient-accent: linear-gradient(135deg, #3d5a80 0%, #ff6b35 100%);
    --gradient-logo: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd23f 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    cursor: none;
}

/* Hide all default cursors */
*, *::before, *::after {
    cursor: none !important;
}

/* Alternative cursor approach - create a blue man cursor using CSS */
.custom-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="%230066ff" stroke="%230044cc" stroke-width="2"/><circle cx="16" cy="12" r="4" fill="white"/><path d="M10 24 Q16 20 22 24" stroke="white" stroke-width="2" fill="none"/></svg>') 16 16, auto;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99999999 !important;
    transition: all 0.3s ease;
}

/* Enhanced navbar when scrolled */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure navbar stays on top of all content */
.navbar,
.navbar *,
.nav-container,
.nav-container *,
.nav-logo,
.nav-logo * {
    z-index: 99999999 !important;
    position: relative;
}

/* Fallback for older browsers - use fixed position */
@supports not (position: sticky) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
    }
    
    .hero {
        padding-top: 70px !important;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 99999999;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 99999999;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mc-awan-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.mc-logo-img:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo h2 {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Epic Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding-top: 70px;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: floatShapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation-delay: 9s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 30%;
    animation-delay: 12s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    top: 5%;
    right: 30%;
    animation-delay: 15s;
}

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

/* Floating Elements removed */

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

/* Hero badge removed */

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.title-line-2 {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    margin-bottom: 1rem;
}

.title-accent {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}


.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-hero {
    position: relative;
    overflow: hidden;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Partner CTA Button */
.partner-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-partner::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;
}

.btn-partner:hover::before {
    left: 100%;
}

.btn-partner i {
    font-size: 1.2rem;
}

/* Registration Form Button Specific Styling */
.registration-form .btn-primary {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
}

/* CV Upload Section */
.cv-upload-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cv-upload-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cv-upload-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.cv-upload-description {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

.cv-upload-section .file-input-display {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.cv-upload-section .file-input-display:hover {
    background-color: rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cv-upload-section .file-input-display i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.btn-secondary.btn-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-shine {
    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 ease;
}

.btn-hero:hover .btn-shine {
    left: 100%;
}

/* Centered Scroll Indicator */
.hero-scroll-center {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
}

.scroll-indicator:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-line {
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, #ff6b35 0%, #ffd23f 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: scrollShimmer 2s ease-in-out infinite;
}

@keyframes scrollShimmer {
    0%, 100% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    max-height: 500px;
}

.visual-container {
    position: relative;
    width: 60vh;
    height: 60vh;
    max-width: 500px;
    max-height: 500px;
}

.main-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo-3d-enhanced {
    position: relative;
    animation: logoEnhancedFloat 6s ease-in-out infinite;
}

.main-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.4));
    transition: transform 0.3s ease;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoRingRotate 10s linear infinite;
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation-delay: 0s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
    border-color: rgba(247, 147, 30, 0.3);
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation-delay: 4s;
    border-color: rgba(255, 210, 63, 0.3);
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoPulse 3s ease-in-out infinite;
}

.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 15s linear infinite;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 450px;
    height: 450px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 500px;
    height: 500px;
    animation-duration: 30s;
}

/* Orbit items removed */

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 15%; animation-delay: 1s; }
.particle-3 { bottom: 25%; left: 10%; animation-delay: 2s; }
.particle-4 { bottom: 10%; right: 25%; animation-delay: 3s; }
.particle-5 { top: 50%; left: 5%; animation-delay: 4s; }
.particle-6 { top: 70%; right: 30%; animation-delay: 5s; }
.particle-7 { top: 20%; right: 40%; animation-delay: 6s; }
.particle-8 { bottom: 40%; left: 30%; animation-delay: 7s; }

/* Animations */
@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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


/* Badge pulse animation removed */

@keyframes logoEnhancedFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

@keyframes logoRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
        filter: brightness(1);
    }
    100% { 
        text-shadow: 0 0 60px rgba(255, 107, 53, 0.6), 0 0 80px rgba(247, 147, 30, 0.4);
        filter: brightness(1.1);
    }
}

/* 3D Logo Styles */
.logo-3d-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.logo-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: logoFloat 8s ease-in-out infinite, logoRotate 20s linear infinite;
}

.logo-3d-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.4));
    transition: transform 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    background: var(--primary-color);
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    background: var(--secondary-color);
}

.particle-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
    background: var(--tertiary-color);
}

.particle-4 {
    bottom: 10%;
    right: 25%;
    animation-delay: 3s;
    background: var(--accent-color);
}

.particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    background: var(--quaternary-color);
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotateY(5deg); 
    }
    50% { 
        transform: translateY(-25px) rotateY(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotateY(-5deg); 
    }
}

@keyframes logoRotate {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(90deg) rotateX(10deg); }
    50% { transform: rotateY(180deg) rotateX(0deg); }
    75% { transform: rotateY(270deg) rotateX(-10deg); }
    100% { transform: rotateY(360deg) rotateX(0deg); }
}

@keyframes logoGlow {
    0% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translateY(-40px) translateX(-10px) scale(0.8);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-20px) translateX(15px) scale(1.1);
        opacity: 0.9;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Scroll-triggered animations */
.scroll-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-element.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-element.slide-left {
    transform: translateX(-50px);
}

.scroll-element.slide-right {
    transform: translateX(50px);
}

.scroll-element.slide-left.animate,
.scroll-element.slide-right.animate {
    transform: translateX(0);
}

.scroll-element.scale-up {
    transform: scale(0.8);
}

.scroll-element.scale-up.animate {
    transform: scale(1);
}

/* Parallax scrolling effects */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}

.parallax-element {
    will-change: transform;
}

/* Staggered animations */
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}


/* Event Location Section */
.event-location {
    padding: 6rem 0;
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    position: relative;
    min-height: 100vh;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff6b35 !important;
    margin-bottom: 1rem;
}

.location-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px;
    margin: 0 auto;
}

.location-card {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.location-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.location-icon i {
    font-size: 2rem;
    color: white;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.5rem;
}

.venue-type {
    font-size: 1rem;
    color: #ff6b35 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.address {
    margin-bottom: 2rem;
}

.address p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.directions-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-header h2 {
        font-size: 2.5rem;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
    }
    
    .location-icon i {
        font-size: 1.5rem;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .location-header h2 {
        font-size: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .directions-btn {
        width: 100%;
        justify-content: center;
    }
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* About Card Link */
.about-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.about-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.about-card-link:hover .about-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

/* Ensure the card inside the link is clickable */
.about-card-link .about-card {
    pointer-events: none;
}

.about-card-link:hover .about-card {
    pointer-events: none;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partners Section - Clean Showcase Design */
.partners-showcase {
    margin-bottom: 4rem;
}

/* Tier Headers */
.tier-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.tier-header {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tier-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-header:hover::before {
    opacity: 1;
}

.tier-header.active::before {
    opacity: 1;
}

.tier-header:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tier-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.tier-header:hover .tier-icon {
    transform: scale(1.1);
}

.tier-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tier-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Tier Colors */
.tier-header.platinum .tier-icon {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151;
}

.tier-header.gold .tier-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
}

.tier-header.silver .tier-icon {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    color: #1f2937;
}

.tier-header.bronze .tier-icon {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #451a03;
}

/* Partners Content */
.partners-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.partner-tier-content {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-tier-content:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.partner-tier-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* When filtering is active, hide non-active tiers */
.partner-tier-content.filtering {
    display: none;
}

.partner-tier-content.filtering.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Partner Showcase Grid */
.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Partner Showcase Cards */
.partner-showcase-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-showcase-card:hover::before {
    opacity: 1;
}

.partner-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.partner-logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-logo-container {
    border-color: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.partner-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.partner-details {
    text-align: center;
    margin-bottom: 1.5rem;
}

.partner-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.partner-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.partner-tier-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-tier-indicator.platinum {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151;
    box-shadow: 0 4px 15px rgba(229, 231, 235, 0.3);
}

.partner-tier-indicator.gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.partner-tier-indicator.silver {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3);
}

.partner-tier-indicator.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.partner-hover-effect {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-hover-effect {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Empty Partner */
.empty-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 500px;
    margin: 0 auto;
}

.empty-partner:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-3px);
}

/* Empty Partner Link */
.empty-partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.empty-partner-link:hover {
    text-decoration: none;
    color: inherit;
}

.empty-partner-link:hover .empty-partner {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.empty-partner:hover .empty-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    transform: scale(1.1);
}

.empty-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.empty-partner h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.empty-partner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Announcements */
.announcements {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.announcements h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.announcement-item:hover {
    transform: translateX(10px);
}

.announcement-date {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.announcement-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.announcement-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.announcement-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.announcement-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Registration Section */
.register {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Registration Background */
.register-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.register-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: gradientShift 8s ease-in-out infinite;
}

.register-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.register-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.register .container {
    position: relative;
    z-index: 10;
}

.register .section-header h2 {
    color: white;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.register .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.registration-container {
    display: flex;
    justify-content: center;
    align-items: start;
}

.registration-form-container {
    max-width: 600px;
    width: 100%;
}

.registration-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 30px 30px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #fafbfc;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Submission Tabs */
.submission-tabs {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1rem 0;
    position: relative;
    z-index: 15;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 0.75rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.tab-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Form Content Tabs */
.form-content {
    display: none;
}

.form-content.active {
    display: block;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* File Upload Styling */
.file-label {
    display: block;
    cursor: pointer;
    width: 100%;
}

.file-label input[type="file"] {
    display: none;
}

.file-input-display {
    width: 100%;
    padding: 1.5rem 1.25rem;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    border-radius: 15px;
    background-color: rgba(255, 107, 53, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
}

.file-input-display:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.file-input-display i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.file-input-display span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.file-input-display small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.file-label input[type="file"]:focus + .file-input-display {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background-color: rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Registration Info */
.registration-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.info-card h3,
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.info-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-type {
    font-weight: 500;
    color: var(--text-primary);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer {
    padding: 2rem 0;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 80px; /* Start below navigation bar */
    width: 100%;
    height: calc(100% - 80px); /* Adjust height to account for nav bar */
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto; /* Reduced margin since modal starts lower */
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 2rem 2rem 2rem;
    text-align: center;
    margin-top: 1rem;
}

.partner-modal-content .modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 250, 252, 0.5);
}

/* Partner Modal Styles */
.partner-modal-content {
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding-bottom: 2rem;
}

.partner-modal-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.partner-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}


@keyframes pulseGlow {
    from {
        transform: scale(1);
        opacity: 0.3;
    }
    to {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    font-size: 1.2rem;
    color: #ef4444;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000;
    pointer-events: auto;
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* Ensure close button always stays visible */
.partner-modal-content .modal-close,
.modal-header .modal-close,
#partnerModal .modal-close {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    animation: none !important;
    transition: none !important;
    background: rgba(239, 68, 68, 0.9) !important;
    border: 2px solid #ef4444 !important;
    color: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    padding: 0.75rem !important;
    cursor: pointer !important;
}

/* Prevent any fade-out animations on close button */
.partner-modal-content .modal-close,
.partner-modal-content .modal-close *,
.modal-header .modal-close,
#partnerModal .modal-close {
    animation: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
}

/* Force close button visibility with highest specificity */
#partnerModal .modal-header .modal-close {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: rgba(239, 68, 68, 0.9) !important;
    border: 2px solid #ef4444 !important;
    color: white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    padding: 0.75rem !important;
    cursor: pointer !important;
    margin: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.partner-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.partner-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::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.5s ease;
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.detail-item p {
    color: var(--text-secondary);
    margin: 0;
}

.website-link, .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.website-link:hover, .social-link:hover {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

.partner-description {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.partner-description h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.partner-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Mobile responsive for partner modal */
@media (max-width: 768px) {
    .modal {
        top: 0; /* Start from top on mobile */
        height: 100%; /* Full height on mobile */
    }
    
    .partner-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-modal-content {
        width: 95%;
        margin: 80px auto 2% auto; /* Top margin to account for nav bar */
        max-height: calc(100vh - 100px); /* Reduced to account for nav bar */
    }
    
    .partner-modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .detail-item {
        padding: 1.2rem;
    }
    
    .detail-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .modal-close {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
        padding: 0.875rem !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 10000 !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        background: rgba(239, 68, 68, 0.9) !important;
        border: 2px solid #ef4444 !important;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
    }
    
    .modal-close:hover {
        background: #ef4444 !important;
        color: white !important;
        border-color: #ef4444 !important;
        transform: scale(1.05) !important;
        box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3) !important;
    }
    
    .partner-description {
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .partner-tier-content {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .partner-tier-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .nav-right {
        display: flex;
    }
    
    .mc-logo-img {
        height: 30px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .logo-img {
        height: 35px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 130vh;
        min-height: calc(130vh - 70px);
        padding: 70px 0 50px;
        margin-top: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-visual {
        order: 1;
        height: 40vh;
        max-height: 300px;
        margin-bottom: 2rem;
    }

    .title-line-1 {
        font-size: 3rem;
        letter-spacing: -1px;
        line-height: 0.9;
    }

    .title-line-2 {
        font-size: 3rem;
        line-height: 0.9;
    }

    .title-accent {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
    

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 25px;
        font-size: 1rem;
    }

    .visual-container {
        width: 80vw;
        height: 80vw;
        max-width: 280px;
        max-height: 280px;
    }

    .main-logo {
        width: 120px;
        height: 120px;
    }

    .ring-1 {
        width: 160px;
        height: 160px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-3 {
        width: 240px;
        height: 240px;
    }

    .orbit-1 {
        width: 240px;
        height: 240px;
    }

    .orbit-2 {
        width: 280px;
        height: 280px;
    }

    .orbit-3 {
        width: 320px;
        height: 320px;
    }

    .hero-scroll-center {
        bottom: 70px;
    }

    .scroll-indicator {
        padding: 0.5rem 1rem;
        gap: 0.4rem;
        font-size: 0.75rem;
        border-radius: 25px;
        min-width: 140px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .scroll-line {
        width: 3px;
        height: 20px;
        border-radius: 2px;
        background: linear-gradient(180deg, #ff6b35 0%, #ffd23f 100%);
    }

    .registration-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .file-input-display {
        min-height: 100px;
        padding: 1.25rem 1rem;
    }

    .file-input-display i {
        font-size: 1.5rem;
    }

    .file-input-display span {
        font-size: 0.9rem;
    }

    .file-input-display small {
        font-size: 0.8rem;
    }

    .announcement-item {
        flex-direction: column;
        text-align: center;
    }

    .announcement-date {
        align-self: center;
    }

    .tier-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    /* Partners Section Mobile */
    .tier-headers {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .tier-header {
        padding: 1rem 0.75rem;
    }
    
    .tier-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .tier-header h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .tier-header p {
        font-size: 0.75rem;
    }
    
    .partners-content {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .partner-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-showcase-card {
        padding: 1.5rem;
    }
    
    .partner-logo-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .partner-details h4 {
        font-size: 1.2rem;
    }
    
    .partner-details p {
        font-size: 0.9rem;
    }
    
    .partner-tier-indicator {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .partner-hover-effect {
        width: 35px;
        height: 35px;
        right: 1rem;
        font-size: 0.9rem;
    }
    
    .empty-partner {
        padding: 3rem 1.5rem;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .empty-icon i {
        font-size: 1.5rem;
    }
    
    .empty-partner h4 {
        font-size: 1.3rem;
    }
    
    .empty-partner p {
        font-size: 0.9rem;
    }

    .hero-graphic {
        height: 300px;
    }

    .floating-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 135vh;
        min-height: calc(135vh - 70px);
        padding: 70px 0 45px;
        margin-top: 0;
    }

    .hero-container {
        padding: 0 10px;
        gap: 1.5rem;
    }

    .hero-visual {
        height: 35vh;
        max-height: 250px;
        margin-bottom: 1.5rem;
    }

    .title-line-1 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    .title-line-2 {
        font-size: 2.5rem;
    }

    .title-accent {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 5px;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }
    

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 3.5rem;
    }

    .btn-hero {
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .visual-container {
        width: 70vw;
        height: 70vw;
        max-width: 220px;
        max-height: 220px;
    }

    .main-logo {
        width: 100px;
        height: 100px;
    }

    .ring-1 {
        width: 130px;
        height: 130px;
    }

    .ring-2 {
        width: 160px;
        height: 160px;
    }

    .ring-3 {
        width: 190px;
        height: 190px;
    }

    .orbit-1 {
        width: 190px;
        height: 190px;
    }

    .orbit-2 {
        width: 220px;
        height: 220px;
    }

    .orbit-3 {
        width: 250px;
        height: 250px;
    }

    .hero-scroll-center {
        bottom: 65px;
    }

    .scroll-indicator {
        padding: 0.4rem 0.8rem;
        gap: 0.3rem;
        font-size: 0.7rem;
        border-radius: 20px;
        min-width: 120px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 107, 53, 0.4);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    }

    .scroll-line {
        width: 2.5px;
        height: 18px;
        border-radius: 2px;
        background: linear-gradient(180deg, #ff6b35 0%, #ffd23f 100%);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .registration-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Thank You Page Styles */
.thank-you-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding-top: 70px;
}

/* Ensure custom cursor is visible on thank you page */
#custom-cursor {
    position: fixed !important;
    width: 32px !important;
    height: 32px !important;
    background-image: url('Assets/blue man no bg.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    pointer-events: none !important;
    z-index: 999999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ff6b35 !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    line-height: 32px !important;
    text-align: center !important;
    color: white !important;
}

/* Force cursor visibility on thank you page */
.thank-you-hero #custom-cursor,
.thank-you-content #custom-cursor,
body #custom-cursor {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999999 !important;
}

/* Thank you page specific cursor */
#thank-you-cursor {
    position: fixed !important;
    width: 32px !important;
    height: 32px !important;
    background-image: url('Assets/blue man no bg.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    pointer-events: none !important;
    z-index: 9999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ff6b35 !important;
    border-radius: 50% !important;
}

/* Thank You Background */
.thank-you-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.thank-you-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: gradientShift 8s ease-in-out infinite;
}

.thank-you-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.thank-you-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.thank-you-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.success-icon-large {
    margin-bottom: 2rem;
}

.success-icon-large i {
    font-size: 6rem;
    color: #22c55e;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.step-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.step-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.thank-you-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.thank-you-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile responsive for thank you page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-description {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .success-icon-large i {
        font-size: 4rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --text-primary: #000000;
        --bg-primary: #ffffff;
    }
}

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

/* Performance optimizations */
* {
    will-change: auto;
}

/* Disable expensive animations on low-end devices */
@media (max-width: 768px) {
    .floating-card,
    .particle,
    .shape {
        animation: none !important;
        transition: none !important;
    }
}

/* Optimize images */
img {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Memorial Section */
.memorial {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.memorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: memorialGlow 8s ease-in-out infinite alternate;
}

.memorial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: memorialFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.particle:nth-child(7) {
    top: 10%;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 9s;
}

.particle:nth-child(8) {
    top: 50%;
    left: 90%;
    animation-delay: 7s;
    animation-duration: 6s;
}

.memorial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.memorial-image-container {
    flex: 0 0 400px;
    position: relative;
    animation: memorialSlideInLeft 1s ease-out;
}

.memorial-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, var(--primary-color));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.4;
}

.memorial-image-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.5;
}

.memorial-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.memorial-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.memorial-text {
    flex: 1;
    text-align: left;
    color: white;
    animation: memorialSlideInRight 1s ease-out 0.2s both;
}

.memorial-text h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.memorial-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 1px;
}

.memorial-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    font-family: 'Times New Roman', serif;
    line-height: 1.1;
    text-shadow: 
        0 0 30px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 107, 53, 0.2);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: memorialTextGlow 3s ease-in-out infinite alternate;
}

.memorial-dates {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 0 2.5rem 0;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.memorial-message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    max-width: 600px;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem 2rem;
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(5px);
}

.memorial-message::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.memorial-message::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

/* Memorial Section Mobile Responsive */
@media (max-width: 768px) {
    .memorial {
        padding: 6rem 0;
        min-height: auto;
    }
    
    .memorial-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .memorial-image-container {
        flex: none;
        max-width: 300px;
        animation: memorialSlideInUp 1s ease-out;
    }
    
    .memorial-text {
        text-align: center;
        animation: memorialSlideInUp 1s ease-out 0.3s both;
    }
    
    .memorial-text h1 {
        font-size: 3rem;
    }
    
    .memorial-dates {
        font-size: 1.4rem;
    }
    
    .memorial-message {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        border-left: none;
        border-top: 3px solid var(--primary-color);
        border-radius: 15px 15px 0 0;
    }
    
    .memorial-message::before,
    .memorial-message::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .memorial {
        padding: 4rem 0;
    }
    
    .memorial-content {
        gap: 2rem;
    }
    
    .memorial-image-container {
        max-width: 250px;
    }
    
    .memorial-text h1 {
        font-size: 2.5rem;
    }
    
    .memorial-dates {
        font-size: 1.2rem;
    }
    
    .memorial-message {
        font-size: 1rem;
    }
}

/* Memorial Animations */
@keyframes memorialGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}


@keyframes memorialTextGlow {
    0% {
        text-shadow: 
            0 0 30px rgba(255, 107, 53, 0.4),
            0 0 60px rgba(255, 107, 53, 0.2);
    }
    100% {
        text-shadow: 
            0 0 40px rgba(255, 107, 53, 0.6),
            0 0 80px rgba(255, 107, 53, 0.3);
    }
}

@keyframes memorialSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes memorialSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes memorialSlideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes memorialFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
    }
}

/* Memorial Animations */
@keyframes memorialFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes memorialSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Memorial Popup Mobile Responsive */
@media (max-width: 768px) {
    .memorial-popup {
        padding: 15px;
    }
    
    .memorial-content {
        max-width: 95%;
        padding: 2rem 1.5rem;
    }
    
    .memorial-text h1 {
        font-size: 2rem;
    }
    
    .memorial-text p {
        font-size: 0.9rem;
    }
    
    .memorial-photo-container {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .memorial-photo-placeholder i {
        font-size: 2.5rem;
    }
    
    .memorial-message h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .memorial-content {
        padding: 1.5rem 1rem;
    }
    
    .memorial-text h1 {
        font-size: 1.8rem;
    }
    
    .memorial-text p {
        font-size: 0.8rem;
    }
    
    .memorial-photo-container {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .memorial-photo-placeholder i {
        font-size: 2rem;
    }
    
    .memorial-message h3 {
        font-size: 0.9rem;
    }
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.processing-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

.processing-spinner {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step.active {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.step.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.step i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.step.active i {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.step.completed i {
    background: #22c55e;
    color: white;
}

.step span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.processing-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 500;
}

.processing-warning i {
    color: #ef4444;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive for processing overlay */
@media (max-width: 768px) {
    .processing-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.5rem;
    }
    
    .processing-content p {
        font-size: 1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .step {
        padding: 0.75rem;
    }
    
    .step i {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .step span {
        font-size: 0.9rem;
    }
}

/* ==================== RANKING PAGE STYLES ==================== */

/* Ranking Hero Section */
.ranking-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding-top: 70px;
}

.ranking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ranking-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: gradientShift 8s ease-in-out infinite;
}

.ranking-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ranking-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.ranking-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.ranking-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.ranking-title .title-line-1 {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.ranking-title .title-line-2 {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    margin-bottom: 1rem;
}

.ranking-title .title-accent {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ranking-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ranking-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ranking-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

/* Product Selection Bar */
.product-bar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1rem 0;
    position: relative;
    z-index: 15;
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.product-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
}

.product-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Ranking Controls */
.ranking-controls {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.controls-container * {
    color: white !important;
}

.filter-section {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: white !important;
    font-size: 0.9rem;
    min-width: 150px;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.filter-select:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.filter-select option {
    background: #1a1a1a;
    color: white;
}

.date-range-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-date {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 8px;
    padding: 0.5rem;
    color: white !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
}

.filter-date:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.filter-date:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.date-separator {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
}

.search-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.search-box input {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 25px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: white !important;
    font-size: 0.9rem;
    min-width: 250px;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.search-box input:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-label i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.sort-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

.sort-select option {
    background: #1a1a1a;
    color: white;
}

.view-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.25rem;
}

.view-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Ranking Results */
.ranking-results {
    padding: 4rem 0;
    background: #0a0a0a;
    position: relative;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.results-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Ranking Table */
.ranking-table-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.ranking-table th {
    background: rgba(255, 107, 53, 0.2);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ranking-table th.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.ranking-table th.sortable:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-1px);
}

.ranking-table th.sortable::after {
    content: '';
}

/* Hide slots column when not needed */
.ranking-table th#slotsHeader[style*="display: none"],
.ranking-table .slots-cell[style*="display: none"] {
    display: none !important;
}

.ranking-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.ranking-table tr:hover td {
    background: rgba(255, 107, 53, 0.1);
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.rank-cell {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    width: 80px;
}

.rank-1 { color: #ffd700; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }

.lc-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.member-name {
    font-weight: 600;
    color: #ff6b35;
    font-size: 1rem;
}

.product-name {
    font-weight: 500;
    color: #4ecdc4;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-weight: 600;
    color: var(--primary-color);
}

.efficiency-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.efficiency-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.growth-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.growth-up { color: #22c55e; }
.growth-down { color: #ef4444; }
.growth-neutral { color: rgba(255, 255, 255, 0.6); }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-excellent { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.status-good { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.status-fair { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.status-improving { background: rgba(255, 107, 53, 0.2); color: #ff6b35; }

/* Ranking Cards View */
.ranking-cards-container {
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ranking-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ranking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ranking-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.ranking-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-rank {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.card-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.metric-value-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lc-badge {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lc-badge i {
    font-size: 0.8rem;
}

/* Top Performers */
.top-performers {
    margin-bottom: 4rem;
}

.top-performers h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.top-performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.performer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.performer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.performer-card.gold::before { background: linear-gradient(90deg, #ffd700, #ffed4e); }
.performer-card.silver::before { background: linear-gradient(90deg, #c0c0c0, #e5e7eb); }
.performer-card.bronze::before { background: linear-gradient(90deg, #cd7f32, #d97706); }

.performer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.performer-rank {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.performer-card.gold .performer-rank { color: #ffd700; }
.performer-card.silver .performer-rank { color: #c0c0c0; }
.performer-card.bronze .performer-rank { color: #cd7f32; }

.performer-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.performer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.performer-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.performer-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.performer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.performer-card.gold .performer-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.performer-card.silver .performer-badge {
    background: rgba(192, 192, 192, 0.2);
    color: #c0c0c0;
}

.performer-card.bronze .performer-badge {
    background: rgba(205, 127, 50, 0.2);
    color: #cd7f32;
}

/* Analytics Section */
.ranking-analytics {
    padding: 4rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.ranking-analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 1;
}

.ranking-analytics .container {
    position: relative;
    z-index: 10;
}

.analytics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.analytics-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.analytics-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.chart-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-performers-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.performer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.performer-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.performer-rank {
    font-size: 2rem;
    flex-shrink: 0;
}

.performer-info {
    flex: 1;
}

.performer-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.performer-achievement {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* Submission Pages Styles */
.submission-hero {
    background: #0a0a0a;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.submission-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.submission-hero .hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: gradientShift 8s ease-in-out infinite;
}

.submission-hero .hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.submission-hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
}

.submission-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.submission-title .title-line-1 {
    display: block;
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.submission-title .title-line-2 {
    display: block;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.submission-title .title-accent {
    display: block;
    color: #4ecdc4;
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
}

.submission-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.submission-form-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.submission-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-row.single-field {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-row.single-field .form-group {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: white !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(0, 0, 0, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.recent-submissions {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.submissions-table-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    overflow-x: auto;
}

.submissions-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.submissions-table th {
    background: rgba(255, 107, 53, 0.2);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submissions-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.submissions-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.1);
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.status-approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.status-rejected {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Mobile Responsive for Ranking Page */
@media (max-width: 768px) {
    .ranking-title .title-line-1 {
        font-size: 2.5rem;
    }
    
    .ranking-title .title-line-2 {
        font-size: 3rem;
    }
    
    .ranking-stats {
        gap: 2rem;
    }
    
    .product-buttons {
        gap: 0.25rem;
    }
    
    .product-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 70px;
    }
    
    .controls-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .date-range-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-separator {
        display: none;
    }
    
    .filter-date {
        width: 100%;
    }
    
    /* Submission Pages Mobile */
    .submission-title {
        font-size: 2.5rem;
    }
    
    .submission-title .title-line-1 {
        font-size: 1.8rem;
    }
    
    .submission-title .title-line-2 {
        font-size: 2.2rem;
    }
    
    .form-container {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .filter-section {
        justify-content: center;
    }
    
    .search-section {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .sort-controls {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .sort-select {
        min-width: 200px;
    }
    
    .search-box input {
        min-width: 200px;
    }
    
    .ranking-table-container {
        padding: 1rem;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .top-performers-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .ranking-hero-content {
        padding: 1rem;
    }
    
    .ranking-title .title-line-1 {
        font-size: 2rem;
    }
    
    .ranking-title .title-line-2 {
        font-size: 2.5rem;
    }
    
    .ranking-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filter-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-select {
        min-width: 100%;
    }
    
    .search-box input {
        min-width: 100%;
    }
}

/* Contract Reference Code Note Styling */
.contract-note {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    margin-top: 0.5rem !important;
    display: block !important;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

/* Refresh Button Styling */
.refresh-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.refresh-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.refresh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.refresh-btn i {
    font-size: 0.9rem;
}

/* Notification Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
