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

body {
    font-family: 'Courier New', 'Segoe UI', monospace;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #4a6f2e;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #6a9e3a;
    font-size: 24px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(106, 158, 58, 0.5);
}

.logo p {
    font-size: 12px;
    color: #888;
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s;
    font-weight: bold;
}

nav a:hover {
    color: #6a9e3a;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x1080?text=Zombie+Classic+BG');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(106, 158, 58, 0.8);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ccc;
}

.server-info {
    background: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #6a9e3a;
}

.server-info code {
    font-size: 18px;
    background: none;
    color: #6a9e3a;
    margin-right: 15px;
}

.server-info button {
    background: #6a9e3a;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.server-info button:hover {
    transform: scale(1.05);
    background: #5a8e2a;
}

/* Sections */
section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #6a9e3a;
    border-bottom: 2px solid #6a9e3a;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

/* About Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-card {
    background: rgba(30, 35, 45, 0.6);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #6a9e3a;
}

.about-card h3 {
    margin-bottom: 15px;
    color: #6a9e3a;
}

/* Features */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    background: rgba(0,0,0,0.4);
    padding: 30px;
    border-radius: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.feature-icon {
    font-size: 28px;
}

.feature-text {
    font-size: 14px;
}

/* Ranks */
.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.rank-category {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #6a9e3a;
}

.rank-category h3 {
    margin-bottom: 15px;
    color: #6a9e3a;
}

.rank-category ul {
    list-style: none;
}

.rank-category li {
    padding: 6px 0;
    border-bottom: 1px solid #333;
}

/* Connect */
.connect {
    background: rgba(0,0,0,0.5);
}

.connect-info {
    max-width: 600px;
    margin: 0 auto;
}

.ip-box {
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.ip-label {
    font-weight: bold;
    color: #6a9e3a;
}

.connect-steps {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
}

.connect-steps ol {
    padding-left: 25px;
    margin-top: 15px;
}

.connect-steps li {
    margin: 10px 0;
}

code {
    background: #1a1f2e;
    padding: 4px 8px;
    border-radius: 5px;
    color: #6a9e3a;
    font-family: monospace;
}

/* Footer */
footer {
    background: #0a0f1a;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #2a2f3e;
}

footer a {
    color: #6a9e3a;
    text-decoration: none;
}

footer .small {
    font-size: 12px;
    margin-top: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav a {
        margin: 0 10px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .server-info code {
        font-size: 12px;
        display: block;
        margin-bottom: 10px;
    }
    
    .ip-box {
        flex-direction: column;
        text-align: center;
    }
}