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

body {
    font-family: 'VT323', monospace;
    background: #043600;
    color: #f0e491;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    background: rgba(240, 228, 145, 0.1);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid #f0e491;
}

.server-title {
    font-size: 4rem;
    color: #f0e491;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.server-address {
    font-size: 1.8rem;
    color: #31694e;
    background: #f0e491;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    border: 2px solid #f0e491;
}

nav {
    background: rgba(240, 228, 145, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #f0e491;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    color: #f0e491;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 10px 20px;
    background: rgba(240, 228, 145, 0.1);
    border: 2px solid #f0e491;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(240, 228, 145, 0.3);
    transform: translateY(-2px);
}

section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(240, 228, 145, 0.1);
    border-radius: 10px;
    border: 2px solid #f0e491;
}

h2 {
    font-size: 2.5rem;
    color: #f0e491;
    text-align: center;
    margin-bottom: 30px;
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(240, 228, 145, 0.1) 0%, rgba(187, 200, 99, 0.1) 100%);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #bbc863;
}

.server-address-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 10px 25px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.address-label {
    font-size: 1.2rem;
    color: #4caf50;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-value {
    font-size: 1.4rem;
    color: #f0e491;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
}

.address-value:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
}

.copy-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 175, 80, 0.9);
    color: #f0e491;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    border: 2px solid #4caf50;
}

.copy-feedback.show {
    opacity: 1;
}

.version-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(0, 188, 212, 0.1);
    border: 2px solid #00bcd4;
    border-radius: 8px;
    padding: 10px 25px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.version-text {
    font-size: 1.2rem;
    color: #f0e491;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
}

.separator {
    font-size: 1.4rem;
    color: #00bcd4;
    font-weight: bold;
}

.cta-button {
    background: #f0e491;
    color: #31694e;
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-family: 'VT323', monospace;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #bbc863;
    margin-bottom: 20px;
}

.cta-button:hover {
    background: #bbc863;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 228, 145, 0.3);
}

.feedback {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #bbc863;
    font-size: 1.5rem;
}

.feedback.show {
    opacity: 1;
}

.countdown-container {
    margin: 30px 0;
    text-align: center;
}

.countdown-container h3 {
    font-size: 2rem;
    color: #f0e491;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(240, 228, 145, 0.1);
    border: 2px solid #f0e491;
    border-radius: 10px;
    padding: 20px;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 228, 145, 0.3);
    background: rgba(240, 228, 145, 0.2);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #f0e491;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(240, 228, 145, 0.5);
}

.countdown-label {
    font-size: 1.2rem;
    color: #bbc863;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-invitation {
    background: rgba(240, 228, 145, 0.1);
    border: 2px solid #f0e491;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
}

.discord-invitation p {
    font-size: 1.8rem;
    color: #f0e491;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(240, 228, 145, 0.5);
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
    padding: 20px 40px;
    background: rgba(211, 47, 47, 0.2);
    border: 3px solid #d32f2f;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: statusGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
}

.status-indicator {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    animation: pulse 1.5s infinite, indicatorGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

.status-indicator.building {
    background: #ff5f1f;
}

.status-indicator.delayed {
    background: #ffb300;
}

.status-indicator.preparing {
    background: #00bcd4;
}

.status-indicator.online {
    background: #4caf50;
}

.status-indicator.maintenance {
    background: #ff5722;
}

.status-indicator.offline {
    background: #d32f2f;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes statusGlow {
    0% { 
        box-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
        background: rgba(211, 47, 47, 0.2);
    }
    100% { 
        box-shadow: 0 0 30px rgba(211, 47, 47, 0.5);
        background: rgba(211, 47, 47, 0.3);
    }
}

@keyframes indicatorGlow {
    0% { 
        box-shadow: 0 0 15px rgba(211, 47, 47, 0.6);
    }
    100% { 
        box-shadow: 0 0 25px rgba(211, 47, 47, 0.9);
    }
}
    100% { 
        box-shadow: 0 0 25px rgba(255, 87, 34, 0.9);
    }
}
    100% { 
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.9);
    }
}
    100% { 
        box-shadow: 0 0 25px rgba(0, 188, 212, 0.9);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.main-feature {
    margin-top: 30px;
}

.main-feature-card {
    background: linear-gradient(135deg, rgba(240, 228, 145, 0.2) 0%, rgba(187, 200, 99, 0.2) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #f0e491;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(240, 228, 145, 0.2);
}

.main-feature-card h3 {
    font-size: 2.5rem;
    color: #f0e491;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.main-feature-card p {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.sub-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.sub-feature-card {
    background: rgba(240, 228, 145, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0e491;
    transition: all 0.3s ease;
}

.sub-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 228, 145, 0.3);
    background: rgba(240, 228, 145, 0.2);
}

.sub-feature-card h4 {
    font-size: 1.8rem;
    color: #f0e491;
    margin-bottom: 15px;
}

.sub-feature-card p {
    font-size: 1.3rem;
    color: #ffffff;
}

.feature-card {
    background: rgba(240, 228, 145, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0e491;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 228, 145, 0.3);
    background: rgba(240, 228, 145, 0.2);
}

.feature-card h3 {
    font-size: 2rem;
    color: #f0e491;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.3rem;
    color: #ffffff;
}

.feature-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 95, 31, 0.1);
    border: 1px solid rgba(255, 95, 31, 0.3);
    border-radius: 5px;
    font-size: 1.1rem;
    color: #ff5f1f;
}

.warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(240, 228, 145, 0.1);
    border: 1px solid rgba(240, 228, 145, 0.3);
    border-radius: 5px;
    font-size: 1.1rem;
    color: #f0e491;
}

.info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 95, 31, 0.15);
    border: 1px solid rgba(255, 95, 31, 0.4);
    border-radius: 5px;
    font-size: 1.1rem;
    color: #ff6b35;
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.rule {
    background: rgba(240, 228, 145, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #f0e491;
}

.rule h3 {
    font-size: 1.8rem;
    color: #f0e491;
    margin-bottom: 10px;
}

.rule p {
    font-size: 1.3rem;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    text-align: center;
    border: 2px solid #f0e491;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(240, 228, 145, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(240, 228, 145, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item p {
    padding: 15px;
    font-size: 1.5rem;
    color: #f0e491;
    margin: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.contributor-card {
    background: rgba(240, 228, 145, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0e491;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contributor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(240, 228, 145, 0.3);
    background: rgba(240, 228, 145, 0.2);
}

.contributor-card.owner {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(240, 228, 145, 0.1) 100%);
}

.contributor-card.powerful {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(240, 228, 145, 0.1) 100%);
}

.contributor-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 20px rgba(240, 228, 145, 0.5);
}

.contributor-card h3 {
    font-size: 2rem;
    color: #f0e491;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contributor-name {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
    background: rgba(240, 228, 145, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.contributor-description {
    font-size: 1.3rem;
    color: #bbc863;
    line-height: 1.6;
}

.contact-item {
    text-align: center;
    background: rgba(240, 228, 145, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f0e491;
}

.contact-item h3 {
    font-size: 2rem;
    color: #f0e491;
    margin-bottom: 15px;
}

.server-address-large {
    font-size: 2.5rem;
    color: #31694e;
    background: #f0e491;
    padding: 15px 25px;
    border-radius: 5px;
    border: 2px solid #f0e491;
    display: inline-block;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.server-address-large:hover {
    background: #bbc863;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 228, 145, 0.3);
}

.discord-button {
    background: #f0e491;
    color: #31694e;
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-family: 'VT323', monospace;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #bbc863;
    margin-top: 15px;
}

.discord-button:hover {
    background: #bbc863;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 228, 145, 0.3);
}

footer {
    text-align: center;
    padding: 30px;
    background: rgba(240, 228, 145, 0.1);
    border-radius: 10px;
    border: 2px solid #f0e491;
    margin-top: 40px;
}

footer p {
    font-size: 1.3rem;
    color: #f0e491;
}

.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-button {
    background: rgba(49, 105, 78, 0.8);
    border: 2px solid #f0e491;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.music-button:hover {
    background: rgba(49, 105, 78, 1);
    transform: scale(1.1);
}

#music-icon {
    transition: all 0.3s ease;
}

.music-playing #music-icon {
    animation: bounce 1s infinite;
}

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

/* Floating Squares */
#floating-squares {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-square {
    position: absolute;
    background: linear-gradient(135deg, #4CAF50, #8D6E63);
    border-radius: 4px;
    opacity: 0.1;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(180deg);
        opacity: 0;
    }
}

/* Ensure content stays above floating squares */
.container {
    position: relative;
    z-index: 2;
}

header, nav, section, footer {
    position: relative;
    z-index: 2;
}



@media (max-width: 768px) {
    .server-title {
        font-size: 2.5rem;
    }
    
    .server-address {
        font-size: 1.4rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .rules-list,
    .gallery-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .music-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .music-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}