* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.85), rgba(30, 20, 50, 0.8));
    backdrop-filter: blur(2px);
}

.light-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle-light {
    position: absolute;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4), transparent);
    border-radius: 50%;
    animation: floatLight 8s ease-in-out infinite;
}

@keyframes floatLight {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 0.3; }
    50% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) translateX(50px) scale(1.5); opacity: 0; }
}

.admin-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1rem;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
}

.admin-float-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.centered-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.glass-card {
    max-width: 800px;
    width: 100%;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4), transparent);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.logo-img {
    position: relative;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.4);
    transition: all 0.4s;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.title-gradient {
    background: linear-gradient(135deg, #667eea, #764ba2, #a0a0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* Countdown */
.countdown-main-wrapper {
    position: relative;
    margin: 1.5rem 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.4);
    text-align: center;
}

.countdown-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent);
    border-radius: 2rem;
    pointer-events: none;
    animation: pulseGlowLarge 2s ease-in-out infinite;
}

@keyframes pulseGlowLarge {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.98); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.countdown-label-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.countdown-label-main i {
    font-size: 1.5rem;
    color: #667eea;
    animation: rotateIcon 2s ease-in-out infinite;
}

@keyframes rotateIcon {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.countdown-label-main span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff, #a0a0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-container {
    position: relative;
    z-index: 2;
}

.countdown-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 110px;
    padding: 1.2rem 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1.2rem;
    border: 1px solid rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Inter', monospace;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulseSeparator 1s ease-in-out infinite;
}

@keyframes pulseSeparator {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.launch-message {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
}

.launch-message i {
    font-size: 1.1rem;
    color: #667eea;
    animation: rocketFly 1.5s ease-in-out infinite;
}

@keyframes rocketFly {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(8deg); }
}

/* Announcements Section */
.announcements-section {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 1.5rem;
    padding: 1.2rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.announcements-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.announcements-header i {
    font-size: 1.3rem;
    color: #667eea;
}

.announcements-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #667eea, transparent);
}

.announcements-list {
    max-height: 250px;
    overflow-y: auto;
}

.announcement-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
}

.announcement-item.pinned {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 0, 0, 0.4));
}

.announcement-item:hover {
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.15);
}

.announcement-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #f59e0b;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 20px;
}

.announcement-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.announcement-date {
    font-size: 0.7rem;
    color: rgba(102, 126, 234, 0.7);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.announcement-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    margin-right: 0.5rem;
}

.type-info { background: #3b82f6; }
.type-warning { background: #f59e0b; }
.type-success { background: #10b981; }
.type-danger { background: #ef4444; }

.empty-announcements {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.empty-announcements i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-2px);
    color: #fff;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.heart-icon {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@media (max-width: 700px) {
    .glass-card { padding: 1.5rem 1.2rem; }
    .countdown-item { min-width: 70px; padding: 0.8rem 0.3rem; }
    .countdown-number { font-size: 2rem; }
    .countdown-separator { font-size: 2rem; }
    .social-link span { display: none; }
    .social-link { padding: 0.6rem; }
    .admin-float-btn span { display: none; }
    .admin-float-btn { padding: 12px; }
}