/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #2a2a0a 0%, #1a1a05 50%, #000000 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Admin Panel Access Button */
.admin-access {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.access-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.access-title i {
    color: #dc3545;
    font-size: 1.2rem;
}

.admin-panel-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(160, 30, 42, 0.15) 100%);
    border: 2px solid rgba(220, 53, 69, 0.4);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-width: 400px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc3545, #a71e2a, #dc3545);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.admin-panel-btn:hover .btn-glow {
    opacity: 0.6;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #dc3545;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s infinite linear;
}

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

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

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

.admin-panel-btn:hover .particle {
    opacity: 1;
}

.admin-panel-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(220, 53, 69, 0.6);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3), rgba(160, 30, 42, 0.3));
    border-radius: 15px;
    font-size: 1.8rem;
    color: #dc3545;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(220, 53, 69, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

.admin-panel-btn:hover .btn-icon {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.5), rgba(160, 30, 42, 0.5));
    transform: rotate(5deg) scale(1.1);
}

.admin-panel-btn:hover .icon-pulse {
    opacity: 1;
}

.btn-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.btn-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.btn-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(220, 53, 69, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-panel-btn:hover .feature-tag {
    background: rgba(220, 53, 69, 0.3);
    transform: scale(1.05);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 10px;
    color: #dc3545;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.arrow-trail {
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3545);
    transition: left 0.4s ease;
}

.admin-panel-btn:hover .btn-arrow {
    background: rgba(220, 53, 69, 0.4);
    transform: translateX(8px) rotate(15deg);
}

.admin-panel-btn:hover .arrow-trail {
    left: 100%;
}

.access-info {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

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

.info-item i {
    color: #dc3545;
    font-size: 1rem;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        radial-gradient(circle at 15% 25%, rgba(220, 53, 69, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(220, 53, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 85%, rgba(220, 53, 69, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 25% 75%, rgba(220, 53, 69, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 53, 69, 0.08) 0%, transparent 70%),
        conic-gradient(from 0deg at 50% 50%, transparent, rgba(220, 53, 69, 0.05), transparent),
        linear-gradient(135deg, #2a0505 0%, #1a0303 40%, #000000 100%);
    animation: backgroundPulse 12s ease-in-out infinite alternate;
}

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

.shape {
    position: absolute;
    background: 
        radial-gradient(circle, rgba(220, 53, 69, 0.25) 0%, rgba(220, 53, 69, 0.1) 40%, transparent 70%),
        linear-gradient(45deg, rgba(220, 53, 69, 0.15), rgba(160, 30, 42, 0.1));
    border-radius: 50%;
    animation: floatShape 25s infinite linear;
    border: 2px solid rgba(220, 53, 69, 0.4);
    box-shadow: 
        0 0 40px rgba(220, 53, 69, 0.3),
        0 0 80px rgba(220, 53, 69, 0.1),
        inset 0 0 30px rgba(220, 53, 69, 0.1);
    filter: blur(0.5px);
}

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

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

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

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.1);
        opacity: 0.5;
    }
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Geometric Overlay */
.geometric-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hexagon, .triangle, .circle {
    position: absolute;
    border: 3px solid rgba(220, 53, 69, 0.5);
    animation: geometricFloat 18s infinite ease-in-out;
    box-shadow: 
        0 0 25px rgba(220, 53, 69, 0.4),
        0 0 50px rgba(220, 53, 69, 0.2),
        inset 0 0 20px rgba(220, 53, 69, 0.1);
    filter: drop-shadow(0 0 10px rgba(220, 53, 69, 0.3));
}

.hexagon {
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: 
        radial-gradient(ellipse at center, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.05) 70%, transparent),
        linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(160, 30, 42, 0.08));
}

.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(220, 53, 69, 0.1);
    border: none;
    background: transparent;
}

.triangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(220, 53, 69, 0.2);
    filter: drop-shadow(0 0 15px rgba(220, 53, 69, 0.3));
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle, rgba(220, 53, 69, 0.25) 0%, rgba(220, 53, 69, 0.1) 60%, transparent 100%);
}

.hex-1 { top: 15%; left: 85%; animation-delay: 0s; }
.hex-2 { top: 70%; left: 10%; animation-delay: 5s; }
.hex-3 { top: 40%; right: 5%; animation-delay: 10s; }
.tri-1 { top: 25%; left: 5%; animation-delay: 3s; }
.tri-2 { bottom: 30%; right: 15%; animation-delay: 8s; }
.circ-1 { top: 60%; left: 80%; animation-delay: 2s; }
.circ-2 { bottom: 15%; left: 30%; animation-delay: 7s; }

@keyframes geometricFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    33% { transform: translateY(-15px) rotate(120deg); opacity: 0.6; }
    66% { transform: translateY(-30px) rotate(240deg); opacity: 0.3; }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    margin-bottom: 4rem;
    animation: fadeInScale 1.5s ease-out;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.logo-ring {
    position: absolute;
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.outer-ring {
    width: 200px;
    height: 200px;
    animation: rotateRing 25s linear infinite;
    border-style: dashed;
    border-width: 3px;
    border-color: rgba(220, 53, 69, 0.5);
    box-shadow: 
        0 0 30px rgba(220, 53, 69, 0.3),
        inset 0 0 30px rgba(220, 53, 69, 0.1);
}

.middle-ring {
    width: 180px;
    height: 180px;
    animation: rotateRing 18s linear infinite reverse;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.4);
    border-style: dotted;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.inner-ring {
    width: 120px;
    height: 120px;
    animation: rotateRing 12s linear infinite;
    border-width: 4px;
    border-color: rgba(220, 53, 69, 0.7);
    border-style: solid;
    box-shadow: 
        0 0 40px rgba(220, 53, 69, 0.5),
        inset 0 0 20px rgba(220, 53, 69, 0.2);
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.logo-icon {
    position: relative;
    width: 150px;
    height: 150px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: logoAdvanced 4s ease-in-out infinite;
    border: 3px solid rgba(220, 53, 69, 0.3);
    box-shadow: 
        0 0 60px rgba(220, 53, 69, 0.6),
        0 0 120px rgba(220, 53, 69, 0.3),
        inset 0 0 30px rgba(220, 53, 69, 0.1);
}

.main-logo {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 30px rgba(220, 53, 69, 0.8))
        drop-shadow(0 0 60px rgba(220, 53, 69, 0.4));
    transition: all 0.4s ease;
    animation: logoRotate 8s linear infinite;
}

.main-logo:hover {
    filter: 
        drop-shadow(0 0 50px rgba(220, 53, 69, 1))
        drop-shadow(0 0 100px rgba(220, 53, 69, 0.6));
    transform: scale(1.1) rotate(10deg);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

.title-container {
    position: relative;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.gradient-text {
    background: 
        linear-gradient(45deg, 
            #ffffff 0%, 
            #dc3545 25%, 
            #ff6b7a 50%, 
            #dc3545 75%, 
            #ffffff 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(220, 53, 69, 0.8));
    text-shadow: 0 0 40px rgba(220, 53, 69, 0.6);
}

.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textShine {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.deco-line {
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #dc3545, transparent);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.7);
    animation: dotPulse 1.5s ease-in-out infinite;
}

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

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.subtitle-highlight {
    color: #dc3545;
    font-weight: 600;
}

.subtitle-separator {
    color: rgba(255, 255, 255, 0.4);
    animation: separatorBlink 3s ease-in-out infinite;
}

.subtitle-feature {
    color: #ffffff;
    font-weight: 500;
}

.subtitle-version {
    color: rgba(220, 53, 69, 0.8);
    font-style: italic;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Status Section */
.status-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.status-card {
    background: 
        radial-gradient(ellipse at top, rgba(220, 53, 69, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 5, 5, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 700px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(220, 53, 69, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 50px rgba(220, 53, 69, 0.05);
    position: relative;
    overflow: hidden;
}

.status-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(45deg, 
        rgba(220, 53, 69, 0.6), 
        transparent, 
        rgba(220, 53, 69, 0.6), 
        transparent, 
        rgba(220, 53, 69, 0.6));
    background-size: 400% 400%;
    animation: borderGlow 4s ease-in-out infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #dc3545;
    border-radius: 50%;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: rgba(220, 53, 69, 0.4);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

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

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.status-text {
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    width: 150px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc3545, #ff6b7a);
    border-radius: 3px;
    width: 0%;
    position: relative;
    animation: progressLoad 2s ease-out forwards;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressLoad {
    to { width: var(--progress, 75%); }
}

@keyframes progressGlow {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(180px); }
}

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

.coming-soon-message {
    text-align: center;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.8s ease-out forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(220, 53, 69, 0.2);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc3545, #a71e2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

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


/* Enhanced Footer */
.enhanced-footer {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(220, 53, 69, 0.2);
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    flex: 1;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc3545;
    line-height: 1;
}

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

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc3545, transparent);
    animation: waveMove 3s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Advanced animations */
@keyframes backgroundPulse {
    0% {
        filter: brightness(1) saturate(1) hue-rotate(0deg);
    }
    50% {
        filter: brightness(1.2) saturate(1.4) hue-rotate(5deg);
    }
    100% {
        filter: brightness(1) saturate(1) hue-rotate(0deg);
    }
}

@keyframes logoAdvanced {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        box-shadow: 
            0 0 60px rgba(220, 53, 69, 0.6),
            0 0 120px rgba(220, 53, 69, 0.3),
            inset 0 0 30px rgba(220, 53, 69, 0.1);
    }
    25% { 
        transform: scale(1.05) rotate(1deg); 
        box-shadow: 
            0 0 80px rgba(220, 53, 69, 0.8),
            0 0 160px rgba(220, 53, 69, 0.4),
            inset 0 0 40px rgba(220, 53, 69, 0.15);
    }
    50% { 
        transform: scale(1.02) rotate(-0.5deg); 
        box-shadow: 
            0 0 100px rgba(220, 53, 69, 0.7),
            0 0 200px rgba(220, 53, 69, 0.3),
            inset 0 0 50px rgba(220, 53, 69, 0.1);
    }
    75% { 
        transform: scale(1.03) rotate(0.5deg); 
        box-shadow: 
            0 0 70px rgba(220, 53, 69, 0.9),
            0 0 140px rgba(220, 53, 69, 0.5),
            inset 0 0 35px rgba(220, 53, 69, 0.2);
    }
}

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

@keyframes borderGlow {
    0%, 100% { 
        background-position: 0% 50%; 
        opacity: 0.8;
    }
    50% { 
        background-position: 100% 50%; 
        opacity: 1;
    }
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .feature-highlights {
        gap: 1rem;
    }


    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-stats {
        gap: 1rem;
    }

    .status-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .progress-container {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .outer-ring {
        width: 100px;
        height: 100px;
    }

    .middle-ring {
        width: 75px;
        height: 75px;
    }

    .inner-ring {
        width: 50px;
        height: 50px;
    }

    .feature-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 200px;
    }
    
    /* Admin button mobile */
    .admin-panel-btn {
        min-width: 280px;
        padding: 1rem 1.5rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-title {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-features {
        justify-content: center;
        gap: 0.25rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }
    
    .btn-arrow {
        width: 35px;
        height: 35px;
        align-self: center;
        margin-top: 0.5rem;
    }
    
    .access-title {
        font-size: 0.9rem;
    }
}


/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}