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

:root {
    --primary-color: #00ff88;
    --secondary-color: #ff0080;
    --background-dark: #0a0a0a;
    --background-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-accent: #cccccc;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--background-darker), var(--background-dark));
    opacity: 0.8;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-color)20, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--primary-color)40);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px var(--primary-color)40); }
    to { filter: drop-shadow(0 0 30px var(--primary-color)60); }
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-accent);
    margin-bottom: 3rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--background-darker);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-accent);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Artists Section */
.artists {
    padding: 8rem 0;
    background: var(--background-dark);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.artists-grid.single-artist {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 2rem auto 0;
}

.artist-card {
    background: var(--background-darker);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.artist-card.featured {
    width: 100%;
    max-width: 350px;
}

.artist-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-primary);
}

.artist-genre {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

.artist-email {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Music Section */
.music {
    padding: 8rem 0;
    background: var(--background-darker);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.release-card {
    display: flex;
    gap: 1.5rem;
    background: var(--background-dark);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.release-card:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.album-cover {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.release-info {
    flex: 1;
}

.release-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.release-artist {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stream-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stream-link:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--background-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: var(--background-darker);
    border: 1px solid var(--text-secondary);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-link {
    color: var(--text-accent);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.contact-email p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-container { position: relative; }
    .nav-links.active { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1rem 2rem; flex-direction: column; gap: 1rem; border-top: 1px solid var(--text-secondary); }
    .nav-link { padding: 0.75rem 0; }
    .nav-toggle { display: flex; z-index: 1001; }
}