/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

/* Logo */
.logo {
    margin-bottom: 3rem;
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
}

.logo-xplr {
    color: #ffffff;
    font-weight: bold;
}

.logo-leaks {
    color: #ff0000;
    font-weight: bold;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
}

/* Content */
.content {
    margin-top: 2rem;
}

.mirrors-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Mirror List */
.mirror-list {
    margin-bottom: 3rem;
}

.mirror-link {
    display: block;
    color: #ff0000;
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mirror-link:hover {
    color: #ff6666;
    text-shadow: 0 0 10px #ff0000;
    transform: scale(1.05);
}

/* Status Info */
.status-info {
    color: #ffffff;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.status-info p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.highlight-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #ff6666;
    text-shadow: 0 0 5px #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .mirrors-title {
        font-size: 1.5rem;
    }
    
    .mirror-link {
        font-size: 1rem;
    }
    
    .status-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .mirrors-title {
        font-size: 1.3rem;
    }
    
    .mirror-link {
        font-size: 0.9rem;
    }
} 