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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
    min-height: 100vh;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hero {
    padding: 120px 0 80px;
}

h1 {
    font-size: 96px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.subtitle {
    font-size: 20px;
    color: #808080;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    margin-bottom: 64px;
}

.section-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #606060;
    margin-bottom: 8px;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.playlist-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.playlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.playlist-card:hover {
    background: #151515;
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.playlist-card:hover::before {
    opacity: 1;
}

.playlist-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.playlist-content {
    padding: 32px;
}

.playlist-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.playlist-card p {
    color: #707070;
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 15px;
}

.spotify-embed {
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.playlist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s;
}

.playlist-link:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.about-content h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #909090;
    margin-bottom: 24px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 18px;
    color: #707070;
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    color: #909090;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 16px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: #151515;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    padding: 16px 32px;
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #e0e0e0;
}

footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #606060;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #909090;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links i {
    width: 20px;
    font-size: 16px;
}

.footer-bottom {
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #606060;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #606060;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    h1 {
        font-size: 56px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
    }

    .playlists-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .about-content h2,
    .contact-content h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}