:root {
    --primary-color: #00d4ff;
    --secondary-color: #4de8ff;
    --accent-color: #505a64;
    --bg-color: #0a0a0a;
    --bg-darker: #050505;
    --text-color: #d6d6d6;
    --glow-color: rgba(0, 212, 255, 0.2);
    --header-font: 'Rajdhani', sans-serif;
    --body-font: 'Saira Condensed', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(135deg, 
            var(--bg-darker) 0%, 
            var(--bg-color) 40%, 
            rgba(30, 30, 30, 0.95) 80%, 
            rgba(25, 25, 25, 0.9) 100%),
        radial-gradient(circle at top right, 
            rgba(0, 212, 255, 0.08) 0%, 
            transparent 60%),
        radial-gradient(circle at bottom left, 
            rgba(0, 212, 255, 0.05) 0%, 
            transparent 50%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Header styles */
.classified {
    font-family: var(--header-font);
    color: var(--secondary-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: fadeIn 1s ease;
    text-transform: uppercase;
}

.coordinates {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease 0.2s both;
    font-weight: 500;
}

.glitch-container {
    position: relative;
    margin: 1rem 0 2rem;
    animation: fadeIn 1s ease 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Header Discord Button */
.action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease 0.6s both;
    flex-wrap: wrap;
}

h1 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 1px;
    position: relative;
    margin: 0;
    text-shadow: 0 0 5px var(--glow-color);
}

h1::before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 2px 0 var(--primary-color);
    top: 0;
    color: var(--text-color);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitch-1 2s linear infinite alternate-reverse;
}

h1::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 var(--secondary-color);
    top: 0;
    color: var(--text-color);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitch-2 3s linear infinite alternate-reverse;
}

.status-line {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease 0.5s both;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px var(--glow-color);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    animation: fadeIn 1s ease 0.5s both;
}

/* Server cards styles */
.servers-container {
    display: flex;
    gap: 20px;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.server-card {
    flex: 1;
    background-color: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
    border-color: var(--primary-color);
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.server-type {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--header-font);
    text-shadow: 0 0 10px var(--glow-color);
}

.server-status {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.status-online {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 8px var(--glow-color);
}

.server-ip {
    font-family: 'Saira Condensed', monospace;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: var(--primary-color);
    background: none;
    box-shadow: none;
}

.server-features {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.8rem;
}

.action-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%,
        rgba(0, 212, 255, 0.08) 50%,
        rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.6);
    border-radius: 6px;
    color: rgba(0, 212, 255, 0.9);
    font-family: var(--header-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    box-shadow: 
        0 2px 8px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.action-btn:hover {
    transform: translateY(-2px) scale(1.01);
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15) 0%,
        rgba(77, 232, 255, 0.12) 100%);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.15),
        0 0 10px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%; 
    width: 45%; 
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 20%, 
        rgba(255, 255, 255, 0.25) 50%, 
        rgba(255, 255, 255, 0.05) 80%, 
        transparent 100%
    );
    transform: skewX(-25deg); 
    transition: left 0.35s cubic-bezier(0.645, 0.045, 0.355, 1); 
}

.action-btn:hover::after {
    left: 130%; 
}


.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border: 1px solid rgba(88, 101, 242, 0.5);
    border-radius: 6px;
    color: white;
    font-family: var(--header-font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 
        0 3px 10px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.discord-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3c45a3 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 5px 15px rgba(88, 101, 242, 0.4),
        0 0 12px rgba(88, 101, 242, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Donation Button */
.donation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #FFDD00 0%, #FFC800 100%);
    border: 1px solid rgba(255, 221, 0, 0.5);
    border-radius: 6px;
    color: #000;
    font-family: var(--header-font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 
        0 3px 10px rgba(255, 221, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.donation-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.donation-btn:hover {
    background: linear-gradient(135deg, #FFC800 0%, #FFB700 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 5px 15px rgba(255, 221, 0, 0.5),
        0 0 12px rgba(255, 221, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-decoration: none;
}


.notification-form {
    display: flex;
    margin: 2rem 0;
    max-width: 600px;
    animation: fadeIn 1s ease 0.8s both;
}

.notification-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-right: none;
    color: var(--text-color);
    font-family: var(--body-font);
    outline: none;
    transition: all 0.3s ease;
}

.notification-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px var(--glow-color);
}

.notification-form button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #000;
    font-family: var(--header-font);
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.notification-form button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px var(--glow-color);
}

.footer {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    animation: fadeIn 1s ease 1s both;
}



.system-tag {
    font-family: var(--body-font);
    color: var(--accent-color);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    margin: 1.5rem 0;
}


.hud-element {
    position: absolute;
    font-family: var(--header-font);
    font-size: 0.7rem;
    color: var(--primary-color);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hud-top-right {
    top: 20px;
    right: 20px;
}

.hud-top-left {
    top: 20px;
    left: 20px;
}

.hud-bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes glitch-1 {
    0% { clip: rect(20px, 930px, 56px, 0); }
    5% { clip: rect(30px, 930px, 16px, 0); }
    10% { clip: rect(81px, 930px, 95px, 0); }
    15% { clip: rect(54px, 930px, 26px, 0); }
    20% { clip: rect(91px, 930px, 31px, 0); }
    25% { clip: rect(88px, 930px, 16px, 0); }
    30% { clip: rect(42px, 930px, 11px, 0); }
    35% { clip: rect(67px, 930px, 65px, 0); }
    40% { clip: rect(32px, 930px, 31px, 0); }
    45% { clip: rect(67px, 930px, 78px, 0); }
    50% { clip: rect(42px, 930px, 42px, 0); }
    55% { clip: rect(72px, 930px, 22px, 0); }
    60% { clip: rect(57px, 930px, 32px, 0); }
    65% { clip: rect(89px, 930px, 92px, 0); }
    70% { clip: rect(30px, 930px, 64px, 0); }
    75% { clip: rect(18px, 930px, 75px, 0); }
    80% { clip: rect(42px, 930px, 15px, 0); }
    85% { clip: rect(97px, 930px, 30px, 0); }
    90% { clip: rect(60px, 930px, 33px, 0); }
    95% { clip: rect(82px, 930px, 94px, 0); }
    100% { clip: rect(10px, 930px, 24px, 0); }
}

@keyframes glitch-2 {
    0% { clip: rect(72px, 930px, 25px, 0); }
    5% { clip: rect(92px, 930px, 85px, 0); }
    10% { clip: rect(38px, 930px, 65px, 0); }
    15% { clip: rect(66px, 930px, 84px, 0); }
    20% { clip: rect(19px, 930px, 35px, 0); }
    25% { clip: rect(11px, 930px, 82px, 0); }
    30% { clip: rect(44px, 930px, 81px, 0); }
    35% { clip: rect(53px, 930px, 21px, 0); }
    40% { clip: rect(31px, 930px, 69px, 0); }
    45% { clip: rect(39px, 930px, 17px, 0); }
    50% { clip: rect(54px, 930px, 28px, 0); }
    55% { clip: rect(95px, 930px, 17px, 0); }
    60% { clip: rect(75px, 930px, 65px, 0); }
    65% { clip: rect(67px, 930px, 23px, 0); }
    70% { clip: rect(58px, 930px, 73px, 0); }
    75% { clip: rect(41px, 930px, 95px, 0); }
    80% { clip: rect(83px, 930px, 54px, 0); }
    85% { clip: rect(30px, 930px, 82px, 0); }
    90% { clip: rect(95px, 930px, 21px, 0); }
    95% { clip: rect(12px, 930px, 25px, 0); }
    100% { clip: rect(48px, 930px, 56px, 0); }
}

@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}


body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.025) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 100;
    opacity: 0.3;
}


@media (max-width: 768px) {
    .servers-container {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .notification-form {
        flex-direction: column;
    }
    
    .notification-form input {
        border-right: 1px solid rgba(0, 212, 255, 0.3);
        border-bottom: none;
    }
    
    .hud-element {
        display: none;
    }
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Community Section */
.community-section {
    text-align: center;
    margin: 3rem 0;
    animation: fadeIn 1s ease 1s both;
}