

/*<style>*/
        :root {
            --primary: #00af0f;
            --primary-dark: #026122;
            --secondary: #05853e;
            --dark: #0b0b12;
            --dark-2: #13131d;
            --dark-3: #1c1c29;
            --text: #f5f5f7;
            --muted: #a7a7b5;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--text);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
        }

        /* NAVBAR */
        .navbar {
            background: rgba(11, 11, 18, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
        }

        .brand-icon {
            color: var(--secondary);
        }

        .nav-link {
            color: #ddd !important;
            font-weight: 500;
            margin-left: 10px;
        }

        .nav-link:hover {
            color: #fff !important;
        }

        /* HERO */
        .hero {
            min-height: 720px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(90deg,
                    rgba(11, 11, 18, .98) 0%,
                    rgba(11, 11, 18, .85) 45%,
                    rgba(11, 11, 18, .4) 100%),
                radial-gradient(circle at 80% 40%,
                    rgba(2, 97, 49, 0.35),
                    transparent 35%);
        }

        .hero::before {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(139, 92, 246, .12);
            filter: blur(80px);
            right: -150px;
            top: 80px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, .15);
            border: 1px solid rgba(139, 92, 246, .35);
            color: #c4b5fd;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: .85rem;
            margin-bottom: 25px;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 5.3rem);
            font-weight: 800;
            line-height: 1.05;
        }

        .gradient-text {
            background: linear-gradient(90deg,
                    #a78bfa,
                    #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--muted);
            font-size: 1.15rem;
            max-width: 650px;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg,
                    var(--primary),
                    var(--secondary));
            border: none;
            color: white;
            padding: 13px 25px;
            border-radius: 10px;
            font-weight: 600;
            transition: .25s;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 10px 30px rgba(139, 92, 246, .25);
        }

        .btn-outline-light {
            border-radius: 10px;
        }

        /* SECTION */
        .section {
            padding: 100px 0;
        }

        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
        }

        .section-subtitle {
            color: var(--muted);
            max-width: 650px;
        }

        /* FILTER */
        .filter-box {
            background: var(--dark-2);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 18px;
            padding: 25px;
        }

        .form-control,
        .form-select {
            background: #20202c;
            border: 1px solid rgba(255, 255, 255, .1);
            color: white;
            border-radius: 10px;
            padding: 12px 15px;
        }

        .form-control:focus,
        .form-select:focus {
            background: #20202c;
            color: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 .2rem rgba(139, 92, 246, .15);
        }

        .form-control::placeholder {
            color: #858594;
        }

        .form-select option {
            background: #20202c;
        }

        /* ARTIST CARD */
        .artist-card {
            background: var(--dark-2);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 18px;
            overflow: hidden;
            transition: .3s;
            height: 100%;
        }

        .artist-card:hover {
            transform: translateY(-7px);
            border-color: rgba(139, 92, 246, .45);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
        }

        .artist-image {
            height: 260px;
            width: 100%;
            object-fit: cover;
        }

        .artist-content {
            padding: 22px;
        }

        .artist-name {
            font-weight: 700;
            margin-bottom: 4px;
        }

        .artist-category {
            color: #a78bfa;
            font-size: .9rem;
        }

        .rating {
            color: #fbbf24;
            font-size: .9rem;
        }

        .price {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .price small {
            color: var(--muted);
            font-size: .75rem;
            font-weight: 400;
        }

        .tag {
            display: inline-block;
            background: rgba(255, 255, 255, .06);
            color: #bbb;
            border-radius: 6px;
            padding: 4px 8px;
            font-size: .72rem;
            margin-right: 4px;
            margin-top: 5px;
        }

        /* HOW IT WORKS */
        .step-card {
            background: var(--dark-2);
            border: 1px solid rgba(255, 255, 255, .07);
            padding: 35px 25px;
            border-radius: 18px;
            height: 100%;
        }

        .step-icon {
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg,
                    var(--primary),
                    var(--secondary));
            border-radius: 16px;
            font-size: 1.7rem;
            margin-bottom: 25px;
        }

        .step-card p {
            color: var(--muted);
        }

        /* CTA */
        .cta {
            padding: 80px 30px;
            border-radius: 25px;
            background:
                radial-gradient(circle at 80% 20%,
                    rgba(236, 72, 153, .35),
                    transparent 30%),
                linear-gradient(135deg,
                    #1c1433,
                    #211325);
            border: 1px solid rgba(255, 255, 255, .1);
        }

        /* MODAL */
        .modal-content {
            background: #171721;
            color: white;
            border: 1px solid rgba(255, 255, 255, .1);
        }

        .modal-header {
            border-bottom-color: rgba(255, 255, 255, .08);
        }

        .modal-footer {
            border-top-color: rgba(255, 255, 255, .08);
        }

        .btn-close {
            filter: invert(1);
        }

        /* FOOTER */
        footer {
            background: #08080d;
            border-top: 1px solid rgba(255, 255, 255, .07);
        }

        footer a {
            color: #999;
            text-decoration: none;
        }

        footer a:hover {
            color: white;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #181821;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 7px;
            transition: .2s;
        }

        .social-icon:hover {
            background: var(--primary);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero {
                min-height: 650px;
            }

            .section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }
    /*</style>*/