/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo/Header */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.logo a:hover {
    text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
    transform: scale(1.05);
}

/* Main content areas */
.home-content,
.listen-content,
.follow-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.listen-content h2,
.follow-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

/* Navigation links */
.main-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 150px;
    letter-spacing: 1px;
}

.nav-link:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff, 0 0 30px #fff;
    transform: scale(1.1);
}

/* Streaming links */
.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.streaming-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.streaming-link:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 15px #fff;
    transform: scale(1.05);
}

/* Social links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.social-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.social-link:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff;
    transform: scale(1.1);
}

/* Social icons */
.social-icon {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    background-color: #000;
}

/* Instagram icon */
.instagram-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 2px solid #000;
    border-radius: 3px;
}

.instagram-icon::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
}

.social-link:hover .instagram-icon::after {
    border-color: #fff;
}

.social-link:hover .instagram-icon::before {
    background-color: #fff;
}

/* Facebook icon */
.facebook-icon::after {
    content: "f";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #000;
    font-size: 14px;
}

.social-link:hover .facebook-icon::after {
    color: #fff;
}

/* Responsive design */
@media (min-width: 768px) {
    .main-nav {
        flex-direction: row;
        gap: 3rem;
    }
    
    .streaming-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .streaming-link {
        min-width: 180px;
    }
    
    .social-links {
        flex-direction: row;
        gap: 3rem;
    }
}

/* Page transitions */
.container {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}