/* DuckDash Private Server - Professional CSS */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

/* Header */
header {
    border-bottom: 1px solid #333;
    background: #0d0d0d;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #888;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background: #252525;
    color: #fff;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 20px;
    color: inherit;
    transition: color 0.2s ease;
}

/* Main Content */
main {
    padding: 40px 0;
}

.content {
    text-align: center;
    margin-bottom: 60px;
}

.main-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 16px;
    color: #fff;
}

.main-content p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.info-item:hover {
    background: #252525;
    border-color: #444;
}

.info-item .material-symbols-outlined {
    font-size: 24px;
    color: #666;
}

.info-item:hover .material-symbols-outlined {
    color: #888;
}

.info-item span:last-child {
    font-size: 0.9rem;
    color: #888;
}

/* Download Section */
.download {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}

.download-area h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.download-area p {
    color: #888;
    margin-bottom: 24px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-download:hover {
    background: #333;
    border-color: #555;
}

.btn-download .material-symbols-outlined {
    font-size: 18px;
}

/* Features Section */
.features {
    margin-bottom: 40px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-card:hover {
    background: #252525;
    border-color: #444;
}

.feature-card .material-symbols-outlined {
    font-size: 28px;
    color: #666;
    margin-bottom: 16px;
    display: block;
}

.feature-card:hover .material-symbols-outlined {
    color: #888;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: #888;
    font-size: 0.95rem;
}

/* Discord Section */
.discord {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}

.discord-area h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.discord-area p {
    color: #888;
    margin-bottom: 24px;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.btn-discord .material-symbols-outlined {
    font-size: 18px;
}

.demonlist-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}

.demonlist-area h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.demonlist-area p {
    color: #888;
    margin-bottom: 24px;
}

.btn-demonlist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-demonlist:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.btn-demonlist .material-symbols-outlined {
    font-size: 18px;
}

/* Footer */
footer {
    text-align: center;
    padding: 80px 20px 40px;
    margin-top: 120px;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content h2 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .download {
        padding: 30px 16px;
    }
}
