:root{
    --primary:#FFCD00;
    --black:#000000;
    --card:#080808;
    --text:#ffffff;
    --muted:#9c9c9c;
    --border:rgba(255,205,0,.18);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    min-height:100vh;
    position:relative;
}

/* Background Effects */

body:before{
    content:'';
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(255,205,0,.06),
    transparent 35%);
    pointer-events:none;
    z-index:-2;
}

body:after{
    content:'';
    position:fixed;
    inset:0;
    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,205,0,.015),
    transparent);
    pointer-events:none;
    z-index:-1;
}

/* Container */

.artist-page{
    max-width:1600px;
    margin:auto;
    padding:50px 60px 80px;
}

/* Logo */

.logo-wrap{
    margin-bottom:90px;
    text-align:center;
}

.logo-wrap img{
    height:70px;
    width:auto;
}

/* Hero Section */

.artist-intro{
    margin-bottom:80px;
}

.main-title{
    font-family:'Cinzel',serif;
    font-size: 100px;
    line-height: 100px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:-2px;
    margin:0;
}

.main-title span{
    display:block;
    color:var(--primary);
}

.intro-line{
    width:180px;
    height:1px;
    background:var(--primary);
    margin-bottom:25px;
}

.artist-intro p{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    max-width:420px;
}

/* Artist Grid */

.artists-section{
    position:relative;
}

/* Card */

.artist-card{
    position:relative;
    display:block;
    height:540px;
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    background:#111;
    transition:.45s ease;
}

.artist-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:
    0 0 40px rgba(255,205,0,.12);
}

/* Image */

.artist-image{
    width:100%;
    height:100%;
    overflow:hidden;
}

.artist-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

.artist-card:hover .artist-image img{
    transform:scale(1.08);
}

/* Overlay */

.artist-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:28px;
    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.96) 60%);
}

/* Artist Style */

.artist-style{
    color:var(--primary);
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

/* Artist Name */

.artist-name{
    font-family:'Cinzel',serif;
    font-size: 26px;
    line-height:1;
    margin-bottom:16px;
    font-weight:600;
}

/* Tags */

.artist-tags{
    color:#9d9d9d;
    font-size:14px;
    line-height:1.8;
}

/* Footer */

.artist-footer{
    margin-top:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.artist-link{
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.artist-arrow{
    width:48px;
    height:48px;
    border:1px solid var(--primary);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:.4s ease;
}

.artist-card:hover .artist-arrow{
    background:var(--primary);
    color:#000;
    transform:rotate(45deg);
}

/* Bottom Quote */

.bottom-quote{
    margin-top:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.quote-line{
    width:260px;
    height:1px;
    background:rgba(255,205,0,.25);
}

.bottom-quote span{
    color:var(--primary);
    font-size:12px;
    letter-spacing:5px;
    text-transform:uppercase;
    text-align:center;
}

/* Responsive */

@media(max-width:1400px){

    .main-title{
        font-size:110px;
    }

    .artist-card{
        height:580px;
    }

}

@media(max-width:992px){

    .artist-page{
        padding:40px 25px 70px;
    }

    .main-title{
        font-size:80px;
        margin-bottom:30px;
    }

    .artist-intro{
        margin-bottom:50px;
    }

    .artist-card{
        height:520px;
    }

    .artist-name{
        font-size:34px;
    }

    .bottom-quote{
        flex-direction:column;
    }

    .quote-line{
        width:120px;
    }

}

@media(max-width:576px){

    .main-title{
                font-size: 56px;
        line-height: 63px;
    }

    .artist-card{
        height:500px;
    }

    .artist-name{
        font-size:30px;
    }

    .artist-content{
        padding:22px;
    }

}