@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: radial-gradient(circle at 10% 20%, #0a0f1e, #03060c);
    font-family: 'Inter', sans-serif;
    color: #f0f3fa;
    padding: 2rem 1.5rem;
}
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}
.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E0B0FF, #FFD966);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.tagline {
    color: #8a94b0;
}
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
.col-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    border-left: 4px solid #FFD966;
    padding-left: 0.75rem;
}
.all-mods-link {
    color: #FFD966;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #FFD966;
}
.featured-card {
    background: rgba(20, 28, 45, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 217, 102, 0.3);
    transition: 0.2s;
}
.featured-card h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(120deg, #fff, #FFD966);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.featured-card p {
    color: #cbd5e6;
    margin-bottom: 1rem;
}
.badge {
    display: inline-block;
    background: rgba(255, 217, 102, 0.15);
    border: 1px solid rgba(255, 217, 102, 0.4);
    border-radius: 40px;
    padding: 0.25rem 0.8rem;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
    color: #FFD966;
}
.download-btn, .details-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 40px;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    transition: 0.2s;
}
.download-btn {
    background: linear-gradient(95deg, #2b7a3e, #1e5a2e);
    color: white;
    margin-right: 0.75rem;
}
.download-btn:hover {
    background: linear-gradient(95deg, #359c4a, #287a38);
    transform: scale(1.02);
}
.details-btn {
    background: rgba(80, 90, 120, 0.6);
    color: #eef;
    border: 1px solid rgba(255,255,255,0.15);
}
.details-btn:hover {
    background: rgba(110, 125, 160, 0.8);
    border-color: #FFD966;
}
.server-info, .rules-info {
    background: rgba(12, 16, 27, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 217, 102, 0.15);
    margin-bottom: 2rem;
}
.server-info h3, .rules-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD966;
}
.server-info p {
    margin-bottom: 0.75rem;
}
.status.online { color: #6fcf97; }
.status.offline { color: #e74c3c; }
.rules-info ul {
    list-style: none;
    margin: 1rem 0;
}
.rules-info li {
    margin-bottom: 0.6rem;
    padding-left: 1.4rem;
    position: relative;
}
.rules-info li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #FFD966;
}
.link-full {
    color: #FFD966;
    text-decoration: none;
    border-bottom: 1px dashed;
}
.footer {
    margin-top: 3rem;
    text-align: center;
    color: #6a7493;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}
@media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .featured-card h3 { font-size: 1.6rem; }
}