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

body{
    background:#060606;
    background: #050505;
    color:white;
    font-family:'Rajdhani',sans-serif;
    overflow-x:hidden;
}

.bg-grid{
    position:fixed;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:40px 40px;
    z-index:-5;
}

.glow{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.15;
    z-index:-4;
}

.glow1{
    width:400px;
    height:400px;
    background:silver;
    top:-100px;
    left:-100px;
}

.glow2{
    width:350px;
    height:350px;
    background:#00bfff;
    bottom:-100px;
    right:-100px;
}

.hero{
    min-height:100vh;
    padding:30px;
    position:relative;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:100px;
}

.logo{
    font-family:'Orbitron',sans-serif;
    font-size:2rem;
    font-weight:900;
    letter-spacing:4px;
}

.logo span{
    color:silver;
}

.navlinks a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}

.navlinks a:hover{
    color:silver;
}

.hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding-top:80px;
}

.title{
    font-family:'Orbitron',sans-serif;
    font-size:6rem;
    letter-spacing:10px;
    background:linear-gradient(to right,#ffffff,#888,#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:pulse 5s infinite alternate;
}

.subtitle{
    font-size:1.5rem;
    color:#b0b0b0;
    margin-top:20px;
}

.description{
    margin-top:30px;
    line-height:1.8;
    font-size:1.2rem;
    color:#d6d6d6;
}

.hero-buttons{
    margin-top:40px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    margin:10px;
    border:1px solid rgba(255,255,255,0.2);
    text-decoration:none;
    color:white;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.05);
    transition:0.4s;
    border-radius:12px;
}

.chrome{
    background:linear-gradient(145deg,#f4f4f4,#777,#fff);
    color:black;
    font-weight:bold;
}

.btn:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 0 25px rgba(255,255,255,0.3);
}

.section{
    padding:100px 40px;
}

.section-title{
    text-align:center;
    font-size:3rem;
    margin-bottom:60px;
    font-family:'Orbitron',sans-serif;
}

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

.music-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    color:white;
    transition:0.5s;
    backdrop-filter:blur(10px);
}

.music-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 0 40px rgba(255,255,255,0.15);
}

.card-image{
    height:220px;
    background-size:cover;
    background-position:center;
}

.card-content{
    padding:25px;
}

.card-content h3{
    font-size:1.7rem;
    margin-bottom:15px;
}

.card-content p{
    color:#cccccc;
    line-height:1.6;
}

.history-panel{
    max-width:1000px;
    margin:auto;
    background:rgba(255,255,255,0.04);
    padding:40px;
    border-radius:20px;
    line-height:1.9;
    font-size:1.2rem;
    backdrop-filter:blur(10px);
}

.connect-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.connect-card{
    background:rgba(255,255,255,0.05);
    padding:40px;
    border-radius:20px;
    text-decoration:none;
    color:white;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.connect-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(255,255,255,0.15);
}

.connect-card h3{
    margin-bottom:15px;
    font-size:2rem;
}

footer{
    text-align:center;
    padding:40px;
    color:#888;
}

@keyframes pulse{
    from{
        filter:drop-shadow(0 0 10px rgba(255,255,255,0.2));
    }
    to{
        filter:drop-shadow(0 0 30px rgba(255,255,255,0.5));
    }
}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0px);
}

@media(max-width:768px){
    .title{
        font-size:3rem;
    }

    .topbar{
        flex-direction:column;
        gap:20px;
    }
}
