
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, #ff0000, #ffffff, #ff4444, #ffcccc);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

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

.nav-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.menu-toggle {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.menu-toggle:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.menu-items {
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.menu-items.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.menu-item:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: translateX(5px);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1.5s ease-out;
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.city-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #ff0000, #ffffff, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.logo-text {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0000, #ffffff, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.main-content {
    text-align: center;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

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

.title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: titleBounce 2s ease-in-out infinite;
}

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

.subtitle {
    font-size: 1.2rem;
    color: #ffeeee;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.countdown-container {
    margin: 2rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    min-width: 110px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

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

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.label {
    display: block;
    font-size: 0.9rem;
    color: #ffeeee;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.launch-date {
    margin-top: 2rem;
}

.launch-date p {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.contact-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.shape5 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 50%;
    animation-delay: 3s;
}

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

/* Page styles for other pages */
.page-container {
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #ff0000, #ffffff, #ff4444, #ffcccc);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.page-title {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ff0000;
}

.section h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.section p, .section ul {
    color: #ffeeee;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.section ul {
    margin-left: 1.5rem;
}

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

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

/* Team member styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member.featured {
    border: 2px solid rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.member-name {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', sans-serif;
}

.member-title {
    color: #ffcccc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.member-description {
    color: #ffeeee;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-member {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.contact-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Event styles */
.upcoming-events {
    margin-bottom: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.event-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.event-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.event-icon {
    font-size: 3rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Arial Black', sans-serif;
}

.event-date {
    color: #ffcccc;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.event-description {
    color: #ffeeee;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.event-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 0, 0, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.welcome-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.welcome-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.welcome-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0) rotate(180deg); }
    50% { transform: scale(1.2) rotate(360deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.popup-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out 0.3s both;
}

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

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.close-popup:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1) rotate(90deg);
}

.popup-body {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.popup-body p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.popup-features {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffeeee;
    animation: popIn 0.6s ease-out;
    animation-delay: calc(var(--delay, 0) * 0.2s);
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { --delay: 1; }
.feature-item:nth-child(2) { --delay: 2; }
.feature-item:nth-child(3) { --delay: 3; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.feature-item span {
    font-size: 0.9rem;
    text-align: center;
}

.popup-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.7s both;
}

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

.popup-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 140px;
}

.popup-btn:not(.secondary) {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.popup-btn:not(.secondary):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

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

.popup-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .logo-text, .city-icon {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1rem 0.5rem;
        min-width: 80px;
    }
    
    .number {
        font-size: 1.8rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 1rem;
    }
    
    .nav-menu {
        top: 15px;
        left: 15px;
    }
    
    .menu-items {
        min-width: 180px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .event-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
    }
    
    .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .welcome-icon {
        font-size: 2.5rem;
    }
    
    .popup-features {
        gap: 0.5rem;
    }
    
    .feature-item {
        flex: 1;
        min-width: 80px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .popup-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .popup-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Whitelist Page Styles */
.whitelist-status {
    margin-bottom: 2rem;
    text-align: center;
}

.status-card {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    animation: pulse 2s ease-in-out infinite;
}

.status-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.status-date {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    margin: 1rem 0;
}

.countdown-small {
    font-size: 1.2rem;
    color: #ffeeee;
    font-family: 'Courier New', monospace;
    margin-top: 1rem;
}

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

.requirement-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.requirement-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.requirement-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.requirement-item p {
    color: #ffeeee;
    font-size: 0.9rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ff0000;
}

.step-number {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #ffeeee;
    font-size: 0.9rem;
}

.application-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.cta-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ffeeee;
    margin-bottom: 1.5rem;
}

.apply-btn {
    padding: 1rem 2rem;
    background: rgba(100, 100, 100, 0.5);
    color: #cccccc;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Server Status Page Styles */
.last-updated {
    color: #ffeeee;
    font-size: 1rem;
    text-align: center;
    margin-top: 0.5rem;
}

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

.status-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.status-card.online {
    border-color: rgba(0, 255, 0, 0.5);
    background: rgba(0, 255, 0, 0.1);
}

.status-card.maintenance {
    border-color: rgba(255, 165, 0, 0.5);
    background: rgba(255, 165, 0, 0.1);
}

.status-card.info {
    border-color: rgba(0, 150, 255, 0.5);
    background: rgba(0, 150, 255, 0.1);
}

.status-indicator {
    position: relative;
}

.pulse-dot {
    width: 15px;
    height: 15px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.maintenance-pulse {
    background: #ffa500;
}

.info-pulse {
    background: #0096ff;
}

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

.status-info {
    flex: 1;
}

.status-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.status-text {
    color: #ffeeee;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.status-details {
    color: #cccccc;
    font-size: 0.9rem;
}

.status-icon {
    font-size: 2rem;
    color: #ffd700;
}

.server-stats {
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, 0.5);
}

.stat-icon {
    font-size: 2rem;
    color: #ffd700;
}

.stat-info h4 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    font-family: 'Arial Black', sans-serif;
}

.stat-info p {
    color: #ffeeee;
    font-size: 0.9rem;
}

.progress-bars {
    margin: 1.5rem 0;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: bold;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
}

.updates-list {
    margin: 1rem 0;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff0000;
}

.update-time {
    color: #cccccc;
    font-size: 0.8rem;
    min-width: 100px;
}

.update-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffeeee;
}

.update-content i {
    color: #00ff00;
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-info h4 {
        font-size: 1.3rem;
    }
    
    .update-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .update-time {
        min-width: auto;
    }
}
