/* Sleep/Dark Theme Design for Darkorbit Private Server */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-accent: #1a1a2e;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --accent-color: #4a7c7e;
    --highlight-color: #16c79a;
    --border-color: #2a2a3e;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(ellipse at top left, rgba(74, 124, 126, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(22, 199, 154, 0.05) 0%, transparent 50%);
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    background-color: var(--bg-secondary);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    width: 100%;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(74, 124, 126, 0.1);
    border: 1px solid var(--border-color);
    animation: fadeIn 0.8s ease-out;
}

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

h1 {
    font-size: 3em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

h3 {
    color: var(--highlight-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.info-section {
    text-align: center;
}

.main-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.main-text strong {
    color: var(--highlight-color);
}

.features {
    background-color: var(--bg-accent);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

.features ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.features li:hover {
    color: var(--text-primary);
}

.redirect-notice {
    background-color: rgba(74, 124, 126, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.redirect-notice p {
    margin: 5px 0;
}

#countdown {
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2em;
}

.subtext {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    color: var(--bg-primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(22, 199, 154, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 199, 154, 0.5);
}

.seo-content {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.seo-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-content strong {
    color: var(--text-primary);
}

footer {
    background-color: var(--bg-secondary);
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.2em;
    }
    
    .features {
        padding: 20px;
    }
    
    .features li {
        font-size: 1em;
    }
}

/* Animation for elements */
.features, .redirect-notice, .cta-button, .seo-content {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.features {
    animation-delay: 0.2s;
}

.redirect-notice {
    animation-delay: 0.4s;
}

.cta-button {
    animation-delay: 0.6s;
}

.seo-content {
    animation-delay: 0.8s;
}

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