/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ff1493;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.brand-link:hover {
    text-decoration: none;
    color: inherit;
}

.logo {
    height: 1.8rem; /* Match the h2 font size */
    width: auto;
    transition: transform 0.3s ease;
}

.brand-link:hover .logo {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.vinyl-record {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    border-radius: 50%;
    position: relative;
    animation: spin 20s linear infinite;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff6b35;
    font-weight: 700;
}

.about p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #aaaaaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.studio-visual {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.equalizer {
    display: flex;
    gap: 8px;
    align-items: end;
}

.equalizer .bar {
    width: 12px;
    background: #ff6b35;
    border-radius: 6px;
    animation: equalizer 1.5s ease-in-out infinite;
}

.equalizer .bar:nth-child(1) { height: 30px; animation-delay: 0s; }
.equalizer .bar:nth-child(2) { height: 50px; animation-delay: 0.2s; }
.equalizer .bar:nth-child(3) { height: 40px; animation-delay: 0.4s; }
.equalizer .bar:nth-child(4) { height: 60px; animation-delay: 0.6s; }
.equalizer .bar:nth-child(5) { height: 35px; animation-delay: 0.8s; }

@keyframes equalizer {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
}

/* Featured Artists Section */
.featured-artists {
    padding: 100px 0;
    background: #0a0a0a;
}

.featured-artists h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

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

.artist-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.artist-image {
    margin-bottom: 1.5rem;
}

.artist-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.artist-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.artist-card p {
    color: #aaaaaa;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    text-align: center;
}

/* Latest Releases Section */
.latest-releases {
    padding: 100px 0;
    background: #111111;
}

.latest-releases h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

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

.release-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.release-cover {
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.release-info {
    padding: 1.5rem;
}

.release-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.release-info p {
    color: #aaaaaa;
    margin-bottom: 0.5rem;
}

.release-date {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 2.5rem;
}

.contact-section p {
    text-align: center;
    margin-bottom: 50px;
    color: #ccc;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #e94560;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-style: italic;
}

.error-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e94560;
    display: none;
    font-size: 18px;
}

.form-group.error .error-icon {
    display: block;
}

.form-group.error input {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.btn-gradient {
    background: linear-gradient(45deg, #e94560, #0f3460);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
    background: linear-gradient(45deg, #ff4d6d, #1a4a7a);
}

.btn-gradient:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Legal Note Styling */
.legal-note {
    color: #aaaaaa !important;
    font-size: 0.9rem !important;
    font-style: italic;
    margin-top: 0.5rem !important;
    line-height: 1.5;
}

.form-group.error label {
    color: #dc3545;
}

/* Footer */
.footer {
    background: #111111;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: #aaaaaa;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .vinyl-record {
        width: 200px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about h2,
    .featured-artists h2,
    .latest-releases h2,
    .contact h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
}

/* Page-specific styles for artists and discography pages */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    padding: 80px 0;
    background: #111111;
}

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

.artist-profile {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.artist-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.no-artists {
    text-align: center;
    color: #888888;
    font-size: 1.2rem;
    padding: 3rem;
    grid-column: 1 / -1;
}

/* Filter Section Styles */
.filter-section {
    padding: 40px 0;
    background: #111111;
    border-bottom: 1px solid #333333;
}

.filter-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-dropdown-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.filter-dropdown label {
    color: #aaaaaa;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.filter-select {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333333;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    min-width: 140px;
    text-align: center;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-select:hover {
    color: #ff6b35;
    border-color: #ff6b35;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.filter-select:focus {
    color: #ff6b35;
    border-color: #ff6b35;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.filter-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px;
}

/* Discography Styles */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Track Dropdown Styles */
.track-dropdown {
    margin-top: 1rem;
    border-top: 1px solid #333333;
    padding-top: 1rem;
}

.track-toggle {
    background: transparent;
    border: 1px solid #ff6b35;
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.track-toggle:hover {
    background: #ff6b35;
    color: #ffffff;
}

/* New Track Dropdown Styles for JavaScript Generated Elements */
.tracks-section {
    margin-top: 1rem;
    border-top: 1px solid #333333;
    padding-top: 1rem;
}

.tracks-toggle {
    background: transparent;
    border: 1px solid #ff6b35;
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    outline: none;
}

.tracks-toggle:hover {
    background: #ff6b35;
    color: #ffffff;
}

.tracks-toggle.active {
    background: #ff6b35;
    color: #ffffff;
}

.toggle-text {
    flex: 1;
    text-align: left;
}

.toggle-icon {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tracks-dropdown {
    display: none;
    margin-top: 0.5rem;
}

.tracks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tracks-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.tracks-list li:last-child {
    border-bottom: none;
}

.track-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-list.show {
    display: block;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item.no-tracks {
    justify-content: center;
    color: #888888;
    font-style: italic;
    opacity: 0.8;
}

.track-number {
    color: #ff6b35;
    font-weight: 600;
    margin-right: 1rem;
    min-width: 30px;
}

.track-name {
    flex: 1;
    font-weight: 500;
}

.track-duration {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Album Card Styles */
.album-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    position: relative;
    overflow: hidden;
}



.album-cover-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    font-size: 4rem;
    font-weight: bold;
}



/* Play button styles removed */

.album-info h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.artist-name {
    color: #ff6b35;
    font-weight: 500;
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
}

.featuring-artists {
    color: #cccccc;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-style: italic;
}

.album-artist {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.album-type {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.album-details {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.streaming-link {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #333333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.streaming-link:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

/* Artist Profile Styles */
.artist-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.artist-image-large {
    flex-shrink: 0;
}

.artist-image-large .artist-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.artist-info h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.genre {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location {
    color: #aaaaaa;
    font-size: 1rem;
    margin-bottom: 0;
}

.artist-bio p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.artist-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #aaaaaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-release {
    margin-bottom: 2rem;
}

.latest-release h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.latest-release p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.social-link {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #333333;
    border-radius: 20px;
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #ff6b35;
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for artist profiles */
@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .artist-info h2 {
        font-size: 2rem;
    }

    .artist-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .artists-list {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .artist-image-large .artist-placeholder {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .artist-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item strong {
        font-size: 1.5rem;
    }
}