body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'consolas', monospace;
}

header {
    text-align: center;
    background-color: #1e1e1e;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #00d4ff;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    margin-bottom: 2rem;
}

h2 {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;

}

p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

audio {
    display: block;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    width: 100%;
    max-width: 400px;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #1e1e1e;
    color: #ffffff;
}

footer p {
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2f2f2f;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.25);
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

.social-link img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}

.social-link.discord { background-color: #5865F2; }
.social-link.instagram { background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fcb045 30%, #fd1d1d 60%, #833ab4 100%); }
.social-link.x { background-color: #1DA1F2; }
.social-link.spotify { background-color: #1DB954; }
.social-link.youtube { background-color: #FF0000; }
.social-link.twitch { background-color: #9146FF; }
.social-link.threads { background-color: #1C1C1E; }
.social-link.facebook { background-color: #1877F2; }
.social-link.tiktok { background: linear-gradient(135deg, #69C9D0, #EE1D52); }
.social-link.reddit { background-color: #FF4500; }
.social-link.imgbb { background-color: rgba(0, 0, 0, 0); }
.social-link.github { background-color: #171515; }

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    main {
        padding: 1rem;
    }
    .social-links {
        gap: 0.5rem;
    }
    .social-links img {
        width: 35px;
        height: 35px;
    }
}