@import url(/Footer.css);
:root {
    --dark-bg: #0a0a12;
    --primary: #12122e;
    --secondary: #1a1a3a;
    --accent: #0066ff;
    --text: #e0e0ff;
    --highlight: #00a8ff;
    --pulse: 0;
}
body {
    background-color: var(--dark-bg);
    color: var(--text);
    font-family: 'Minecraft', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 168, 255, 0.05) 0%, transparent 20%);
    overflow-x: hidden;
}
@font-face {
    font-family: 'Minecraft';
    src: url('https://fonts.cdnfonts.com/css/minecraft-4') format('woff2');
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--highlight);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.home-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer; 
    border: none; 
    outline: none; 
    user-select: none; 
}
.home-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.6);
    animation: none;
}
.home-button:active {
    transform: scale(0.95) translateY(0);
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, var(--highlight), var(--accent));
    transition: all 0.1s ease;
}
.home-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 168, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 168, 255, 0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.home-button {
    animation: fadeIn 0.5s ease forwards, pulse 2s infinite 0.5s;
}
header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('https://www.minecraft.net/content/dam/minecraft/touchup-2020/minecraft-logo.svg') center/contain no-repeat,
        radial-gradient(circle at center, transparent 0%, rgba(0, 102, 255, 0.1) 100%);
    opacity: 0.1;
    z-index: 0;
}
header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--highlight), transparent);
}
h1 {
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    text-shadow: 0 0 10px var(--highlight), 0 0 20px rgba(0, 168, 255, 0.5);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
h1:hover {
    text-shadow: 0 0 15px var(--highlight), 0 0 30px rgba(0, 168, 255, 0.7);
}
h2 {
    color: var(--highlight);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-top: 30px;
    position: relative;
}
h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}
h3 {
    color: var(--highlight);
    display: flex;
    align-items: center;
    gap: 10px;
}
.subtitle {
    font-size: 1.5rem;
    margin: 10px 0 0;
    font-style: italic;
    color: #aaaaff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(0, 168, 255, 0.3);
}
.server-info {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--accent);
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}
.server-info p {
    margin: 0;
    padding: 8px 15px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s;
}
.server-info p:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-3px);
}
.feature-card {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-left: 3px solid var(--highlight);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        rgba(0, 168, 255, 0.1),
        transparent
    );
    transform: rotate(30deg);
    transition: all 0.7s;
    opacity: 0;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}
.feature-card:hover::before {
    animation: shine 1.5s;
}
@keyframes shine {
    0% { opacity: 0; left: -50%; }
    50% { opacity: 1; }
    100% { opacity: 0; left: 150%; }
}
.feature-card ul {
    list-style-type: none;
    padding-left: 0;
}
.feature-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}
.feature-card li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--highlight);
}
.join-now {
    background: linear-gradient(to right, #0066ff, #00a8ff);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
    position: relative;
    overflow: hidden;
}
.join-now::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}
.join-button {
    display: inline-block;
    background-color: var(--dark-bg);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border: 2px solid white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.join-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.7s;
    z-index: -1;
}
.join-button:hover {
    background-color: white;
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
.join-button:hover::before {
    left: 100%;
}
.discord-link {
    color: var(--highlight);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.discord-link:hover {
    color: white;
    text-shadow: 0 0 5px var(--highlight);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-links a {
    color: var(--text);
    font-size: 24px;
    transition: all 0.3s;
}
.social-links a:hover {
    color: var(--highlight);
    transform: translateY(-3px);
}
.feature-container {
    perspective: 1000px;
}
.feature-card {
    transform-style: preserve-3d;
    will-change: transform;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 70px;
    text-align: center;
    border: 1px solid var(--accent);
}
.countdown-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--highlight);
}
.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .server-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .countdown {
        flex-wrap: wrap;
    }
    .home-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }