/* =========================
   ARKANA SPA
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Orbitron',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* =========================
   BACKGROUND
========================= */

.bg{
    position:fixed;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.80)
    ),
    url('../assets/background-home.jpg');

    background-size:cover;
    background-position:center;

    z-index:-10;
}

/* =========================
   PLAYER BAR
========================= */

.player-bar{

    position:fixed;

    top:15px;
    left:50%;

    transform:translateX(-50%);

    width:95%;
    max-width:1200px;

    height:60px;

    display:flex;

    justify-content:space-between;
    align-items:center;

    padding:0 20px;

    border-radius:999px;

    background:
    rgba(10,10,20,.75);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 0 25px rgba(255,0,255,.15);

    z-index:9999;
}

.player-left{

    overflow:hidden;

    white-space:nowrap;

    text-overflow:ellipsis;
}

#nowPlaying{

    font-size:.9rem;
}

.player-controls{

    display:flex;

    gap:8px;
}

.player-controls button{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:white;

    font-size:14px;

    background:
    linear-gradient(
        45deg,
        #ff00ff,
        #7a00ff
    );

    transition:.3s;
}

.player-controls button:hover{

    transform:scale(1.08);

    box-shadow:
    0 0 15px #ff00ff;
}

/* =========================
   HERO
========================= */

.hero{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 50px;
}

.sigil-wrapper{

    position:relative;

    width:280px;
    height:280px;

    margin-bottom:25px;
}

.logo{

    width:100%;
    height:100%;

    object-fit:contain;

    animation:
    floatLogo 6s ease-in-out infinite;

    filter:
    drop-shadow(0 0 20px #ff00ff)
    drop-shadow(0 0 40px #7a00ff);
}

@keyframes floatLogo{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

.occult-circle{

    position:absolute;

    inset:0;

    border-radius:50%;

    border:
    2px solid rgba(255,0,255,.25);

    animation:
    spin 40s linear infinite;
}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

.hero h1{

    font-size:4rem;

    letter-spacing:10px;

    text-shadow:
    0 0 15px #ff00ff,
    0 0 40px #ff00ff;
}

.hero p{

    margin-top:20px;

    opacity:.8;

    letter-spacing:6px;
}

.enter-btn{

    margin-top:35px;

    text-decoration:none;

    color:white;

    padding:
    16px 36px;

    border-radius:15px;

    background:
    linear-gradient(
        45deg,
        #ff00ff,
        #7a00ff
    );

    transition:.3s;
}

.enter-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 20px #ff00ff;
}

/* =========================
   SEARCH
========================= */

.search-wrapper{

    width:100%;

    max-width:700px;

    margin:0 auto 80px;

    padding:0 20px;
}

#search{

    width:100%;

    padding:16px 20px;

    border:none;

    border-radius:15px;

    background:
    rgba(255,255,255,.08);

    color:white;

    outline:none;
}

/* =========================
   ALBUMS
========================= */

#albumsContainer{

    max-width:1200px;

    margin:auto;

    padding:0 20px 120px;
}

.album-section{

    margin-bottom:120px;

    text-align:center;
}

.album-title{

    font-size:2.4rem;

    margin-bottom:35px;

    text-shadow:
    0 0 15px #ff00ff;
}

.album-cover{

    width:100%;

    max-width:500px;

    border-radius:25px;

    margin-bottom:40px;

    box-shadow:
    0 0 30px rgba(255,0,255,.25);
}

/* =========================
   TRACKS
========================= */

.tracks-list{

    max-width:900px;

    margin:auto;
}

.track{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:18px 22px;

    margin-bottom:12px;

    border-radius:15px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    transition:.3s;
}

.track:hover{

    background:
    rgba(255,255,255,.09);
}

.track-info{

    display:flex;

    justify-content:space-between;

    width:100%;
}

.track button{

    border:none;

    cursor:pointer;

    color:white;

    padding:
    10px 20px;

    border-radius:10px;

    background:
    linear-gradient(
        45deg,
        #ff00ff,
        #7a00ff
    );
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        #ff00ff,
        #7a00ff
    );

    border-radius:50px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    .sigil-wrapper{
        width:220px;
        height:220px;
    }

    .player-bar{

        height:auto;

        padding:10px;

        flex-direction:column;

        gap:10px;
    }

    .track{

        flex-direction:column;

        align-items:flex-start;
    }

    .track-info{

        flex-direction:column;

        gap:8px;
    }

}