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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--homepage-background, linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%));
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 107, 107, 0.3);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            33% { transform: translateY(-20px) rotate(120deg); opacity: 0.8; }
            66% { transform: translateY(20px) rotate(240deg); opacity: 0.6; }
        }

        /* Header */
        .header {
    position: relative;
    z-index: 10;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 36, 0.05) 100%);
}

.header-content {
    text-align: left;
}

.logo {
    font-size: 2.5em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--homepage-logo-color-start, #ff6b6b), var(--homepage-logo-color-end, #ffa726));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.2em;
    color: #ccc;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.header-actions {
    /* This container will hold the button */
}

.join-now-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--homepage-logo-color-start, #ff6b6b), var(--homepage-logo-color-end, #ee5a24));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--homepage-button-shadow-color, rgba(255, 107, 107, 0.3));
}

.join-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--homepage-button-shadow-color, rgba(255, 107, 107, 0.5));
}

.stats-section {
    padding: 40px 20px;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            background: linear-gradient(135deg, var(--homepage-logo-color-start, #ff6b6b), var(--homepage-logo-color-end, #ee5a24));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #888;
            font-size: 1em;
            margin-top: 5px;
        }

        /* Search and Filter */
        .controls {
            position: relative;
            z-index: 10;
            padding: 20px 20px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .search-container {
            position: relative;
            margin-bottom: 30px;
        }

        .search-bar {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            padding: 18px 60px 18px 25px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid transparent;
            border-radius: 50px;
            color: white;
            font-size: 1.1em;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: block;
        }

        .search-bar:focus {
            outline: none;
            border-color: var(--homepage-logo-color-start, #ff6b6b);
            box-shadow: 0 0 30px var(--homepage-logo-color-start, rgba(255, 107, 107, 0.3));
            transform: scale(1.02);
        }

        .search-bar::placeholder {
            color: #888;
        }

        .search-icon {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 1.2em;
            pointer-events: none;
        }

        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid transparent;
            border-radius: 25px;
            color: white;
            font-size: 0.9em;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, var(--homepage-logo-color-start, #ff6b6b), var(--homepage-logo-color-end, #ee5a24));
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--homepage-button-shadow-color, rgba(255, 107, 107, 0.3));
        }

        /* Artists Grid */
        .artists-grid {
            position: relative;
            z-index: 10;
            padding: 0 20px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .artist-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 0.6s ease-out forwards;
        }

        .artist-card:nth-child(1) { animation-delay: 0.1s; }
        .artist-card:nth-child(2) { animation-delay: 0.2s; }
        .artist-card:nth-child(3) { animation-delay: 0.3s; }
        .artist-card:nth-child(4) { animation-delay: 0.4s; }
        .artist-card:nth-child(5) { animation-delay: 0.5s; }
        .artist-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .artist-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--homepage-logo-color-start, rgba(255, 107, 107, 0.1)), var(--homepage-logo-color-end, rgba(238, 90, 36, 0.1)));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .artist-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 50px var(--homepage-logo-color-start, rgba(255, 107, 107, 0.2));
        }

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

        .artist-image {
            height: 250px; /* Increased height */
            background-size: contain; /* Fit image without cropping */
            background-repeat: no-repeat;
            background-position: center;
            background-color: rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .artist-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }

        .artist-card:hover .artist-image::before {
            transform: rotate(45deg) translateX(100%);
        }

        .artist-info {
            padding: 25px;
            position: relative;
            z-index: 2;
        }

        .artist-name {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--homepage-artist-name-text, #ffffff);
        }

        .artist-genre {
            color: var(--homepage-artist-slug-text, #888);
            font-size: 0.95em;
            margin-bottom: 15px;
        }

        .artist-description {
            color: #bbb;
            font-size: 0.9em;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .artist-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tracks-count {
            color: var(--homepage-logo-color-start, #ff6b6b);
            font-weight: bold;
            font-size: 0.9em;
        }

        .listen-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, var(--homepage-logo-color-start, #ff6b6b), var(--homepage-logo-color-end, #ee5a24));
            border: none;
            border-radius: 20px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
        }

        .listen-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px var(--homepage-button-shadow-color, rgba(255, 107, 107, 0.4));
        }

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

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .header {
                padding: 40px 15px 60px;
                flex-direction: column;
                align-items: center;
                gap: 20px; /* Space between stacked items */
            }

            .header-content {
                text-align: center; /* Center content when stacked */
            }

            .logo {
                font-size: 2.5em;
            }

            .tagline {
                font-size: 1.1em;
            }

            .stats {
                gap: 30px;
                flex-direction: column;
            }

            .stat-number {
                font-size: 2em;
            }

            .controls {
                padding: 15px 15px 30px;
            }

            .search-bar {
                padding: 15px 50px 15px 20px;
                font-size: 1em;
            }

            .filters {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 18px;
                font-size: 0.85em;
            }

            .artists-grid {
                padding: 0 15px 60px;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .artist-image {
                height: 160px;
                font-size: 2.5em;
            }

            .artist-info {
                padding: 20px;
            }

            .artist-name {
                font-size: 1.3em;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .logo {
                font-size: 3.2em;
            }

            .stats {
                gap: 40px;
            }

            .grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (min-width: 1200px) {
            .grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 35px;
            }
        }