@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Special+Elite&family=Merriweather&display=swap');
* {
    font-family: 'Courier New', monospace; /* Typewriter vibe */
}
/* Background: dark gritty */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6e6e6;
    background: radial-gradient(circle at top, #111 0%, #000 100%);
    background-size: cover;
}

/* Center container */
.maintenance-container {
    text-align: center;
    background: rgba(20, 20, 20, 0.9);
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    border: 2px solid #663300;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.9);
}

/* Title styling */
.title {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #d4af37;
    text-shadow: 0px 0px 10px rgba(212,175,55,0.6);
    margin-bottom: 15px;
}

.subtitle {
    font-style: italic;
    margin-bottom: 25px;
}

/* Countdown like a typewriter */

.countdown {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff4d4d;
    margin: 20px 0;
    text-shadow: 0px 0px 5px rgba(255,0,0,0.5);
    letter-spacing: 2px;
}

/* Loading revolver spinner */
.loading {
    display: none;
    margin-top: 20px;
}
.revolver-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #444;
    border-radius: 50%;
    border-top: 6px solid #d4af37;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    font-size: 1rem;
    color: #d4af37;
    font-weight: bold;
}

/* Careers */
.careers h2 {
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.careers a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: bold;
}

.careers a:hover {
    text-decoration: underline;
}

/* Fade-in */
.fade-in {
    opacity: 0;
    animation: fadeIn ease 2s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}



/*Footer*/
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #444;
}
/*///////////////////////////////////////*/
/*Social Media*/
.socials {
    margin-top: 40px;
    text-align: center;
}

.socials h3 {
    font-family: 'Special Elite', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    border: 2px solid #111;
    text-decoration: none;
    color: #111;
    font-weight: bold;
    font-family: 'Merriweather', serif;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

/* Platform-specific colors */
.discord:hover { background: #5865F2; border-color: #5865F2; }
.social-links a.discord {
    color: #ffffff !important; /* force white text */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* subtle shadow for contrast */
    border: 2px solid #ff424d; /* Patreon red border */
    transition: all 0.3s ease;
}
.instagram:hover { background: #E4405F; border-color: #E4405F; }
.social-links a.instagram {
    color: #ffffff !important; /* force white text */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* subtle shadow for contrast */
    border: 2px solid #ff424d; /* Patreon red border */
    transition: all 0.3s ease;
}
.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; }
.social-links a.twitter {
    color: #ffffff !important; /* force white text */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* subtle shadow for contrast */
    border: 2px solid #ff424d; /* Patreon red border */
    transition: all 0.3s ease;
}
.bluesky:hover { background: #1185FE; border-color: #1185FE; }
.social-links a.bluesky {
    color: #ffffff !important; /* force white text */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* subtle shadow for contrast */
    border: 2px solid #ff424d; /* Patreon red border */
    transition: all 0.3s ease;
}
.youtube:hover { background: #FF0000; border-color: #FF0000; }
.social-links a.youtube {
    color: #ffffff !important; /* force white text */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* subtle shadow for contrast */
    border: 2px solid #ff424d; /* Patreon red border */
    transition: all 0.3s ease;
}
.patreon:hover { background: #FF424D; border-color: #FF424D; }
.social-links a.patreon {
    color: #ffffff !important; /* force white text */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* subtle shadow for contrast */
    border: 2px solid #ff424d; /* Patreon red border */
    transition: all 0.3s ease;
}

/* Patreon Coming Soon Badge */
.coming-soon-badge {
    background: #d4af37;
    color: #111;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 4px;
    vertical-align: middle;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Change color slightly on hover */
.patreon:hover .coming-soon-badge {
    background: #ff424d;
    color: #fff;
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

