:root{

--bg:#050816;

--card:#0f172a;

--purple:#7c3aed;

--cyan:#00d4ff;

--pink:#ff0080;

}

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:var(--bg);
color:white;
overflow-x:hidden;
}

.container{
width:min(1200px,92%);
margin:auto;
}

section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:42px;
}

nav{
position:fixed;
top:0;
left:0;
width:100%;
backdrop-filter:blur(15px);
background:#050816dd;
z-index:999;
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:24px;
font-weight:800;
}

.menu{
display:flex;
gap:30px;
}

.menu a{
color:white;
text-decoration:none;
}

.mobile-toggle{
display:none;
font-size:30px;
cursor:pointer;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
}
.hero-content {
    text-align: center;
}
.hero-content h1 {
    text-shadow:
    0 0 20px #00d4ff,
    0 0 40px #7c3aed;
}
.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:70px;
line-height:1.1;
margin-bottom:20px;
}



.hero.h1 span{
background:linear-gradient(90deg,var(--primary),var(--secondary));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
color:var(--muted);
margin-bottom:30px;
line-height:1.8;
}

.hero-image img{
width:100%;
max-width:420px;
border-radius:50%;
}

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 36px;

    margin-top:30px;

    background:
        linear-gradient(
            135deg,
            #00d4ff,
            #7c3aed
        );

    color:#ffffff !important;

    font-size:1rem;
    font-weight:600;

    text-decoration:none;

    border:none;
    border-radius:50px;

    cursor:pointer;

    position:relative;
    z-index:999;

    box-shadow:
        0 0 20px rgba(0,212,255,.5),
        0 0 40px rgba(124,58,237,.4);

    transition:all .3s ease;

}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:20px;
}

.about-grid p{
color:var(--muted);
line-height:1.8;
}

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

.card{
background:var(--card);
border-radius:20px;
overflow:hidden;
}

iframe{
width:100%;
height:250px;
border:none;
}

.card-content{
padding:20px;
}

audio{
width:100%;
margin-top:20px;
}

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

.service-card{
background:var(--card);
padding:40px;
border-radius:20px;
text-align:center;
}

.contact-box{
text-align:center;
}

footer{
text-align:center;
padding:40px;
border-top:1px solid rgba(255,255,255,.1);
}

@media(max-width:768px){

.hero-grid,
.about-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:42px;
}

.menu{
display:none;
position:absolute;
top:80px;
left:0;
width:100%;
background:#0f172a;
padding:20px;
flex-direction:column;
}

.menu.active{
display:flex;
}

.mobile-toggle{
display:block;
}

}

#heroVideo{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* .overlay{
position:absolute;
inset:0;
background:
linear-gradient(
180deg,
rgba(0,0,0,.4),
rgba(0,0,0,.9)
);
} */
#hologram-container,
#particles,
.overlay{

    pointer-events:none;

}
#hologram-container{
    position:absolute;
    inset:0;
    z-index:1;
}

#particles{
    position:absolute;
    inset:0;
    z-index:2;
}

.overlay{
    position:absolute;
    inset:0;
    z-index:3;
}

.hero-content{
    position:relative;
    z-index:10;
}

.hero-content p{

    display: inline-block;

    background: rgba(5,8,22,.65);

    padding: 15px 25px;

    border-radius: 12px;

    color: #ffffff;

    font-size: 1.2rem;

    line-height: 1.8;

    backdrop-filter: blur(8px);

}

.hero-image{
    position:relative;
    z-index:10;
}

.floating-social{

    position:fixed;

    right:30px;
    top:50%;

    transform:translateY(-50%);

    display:flex;
    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.floating-social a{

    width:50px;
    height:50px;

    border-radius:50%;

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

    color:#fff;

    background:#0f172a;

    text-decoration:none;

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

}

 
.video-card iframe{
    width:100%;
    aspect-ratio:16/9;
}

.music-cover{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.spotify-card iframe{
    width:100%;
    height:352px;
}

/* CINEMATIC MODAL */

.cinematic-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(10px);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:99999;

}

.cinematic-modal.show{

    opacity:1;

    visibility:visible;

}

.modal-content{

    width:90%;
    max-width:700px;

    text-align:center;

    padding:60px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.08),
            rgba(124,58,237,.08)
        );

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

    backdrop-filter:blur(20px);

    box-shadow:
        0 0 40px rgba(0,212,255,.2),
        0 0 80px rgba(124,58,237,.2);

    transform:scale(.8);

    transition:.4s;

}

.cinematic-modal.show .modal-content{

    transform:scale(1);

}

.modal-content h2{

    font-size:4rem;

    color:white;

    letter-spacing:8px;

    margin-bottom:20px;

    text-shadow:
        0 0 20px #00d4ff,
        0 0 40px #7c3aed;

}

.modal-content p{

    color:white;

    margin-bottom:30px;

}

#closeModal{

    padding:15px 40px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    background:
        linear-gradient(
            90deg,
            #00d4ff,
            #7c3aed
        );

    color:white;

    font-weight:700;

}

.cinematic-modal.show{

    opacity:1;
    display:flex;
    /* visibility:visible; */

}

.modal-content{

    position:relative;

    width:90%;
    max-width:650px;

    padding:60px;

    text-align:center;

    border-radius:24px;

    overflow:hidden;
    animation:
    fadeInCinema 1s ease;

    background:
    linear-gradient(
        135deg,
        rgba(0,212,255,.08),
        rgba(124,58,237,.08)
    );

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

    backdrop-filter:blur(20px);

    box-shadow:
        0 0 30px rgba(0,212,255,.25),
        0 0 60px rgba(124,58,237,.25);

    transform:scale(.8);

    transition:.5s;

}

.cinematic-modal.show .modal-content{

    transform:scale(1);

}

.modal-content h2{

    font-size:4rem;

    margin-bottom:20px;

    letter-spacing:8px;

    color:#ffffff;

    text-shadow:
        0 0 15px #00d4ff,
        0 0 30px #7c3aed;

}

.modal-content p{

    color:#ffffff;

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:40px;

}

.modal-content button{

    border:none;

    padding:15px 40px;

    border-radius:50px;

    cursor:pointer;

    background:
    linear-gradient(
        90deg,
        #00d4ff,
        #7c3aed
    );

    color:white;

    font-weight:700;

}

.scan-line{

    position:absolute;

    top:0;

    left:-100%;

    width:100%;
    height:2px;

    background:#00d4ff;

    animation:scan 4s linear infinite;

}

@keyframes scan{

    0%{
        left:-100%;
    }

    100%{
        left:100%;
    }

}

@keyframes fadeInCinema{

    0%{

        opacity:0;

        transform:
        scale(.7)
        translateY(80px);

    }

    100%{

        opacity:1;

        transform:
        scale(1)
        translateY(0);

    }

}

.floating-player{

    position:fixed;

    left:20px;
    bottom:20px;

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

    z-index:999999;

    pointer-events:auto;
}

#musicToggle{

    width:70px;
    height:70px;

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

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:white;

    font-size:28px;

    background:
        linear-gradient(
            135deg,
            #00d4ff,
            #7c3aed
        );

    box-shadow:
        0 0 20px rgba(0,212,255,.6),
        0 0 40px rgba(124,58,237,.5);

    transition:.3s;

    pointer-events:auto;
}

#musicToggle:hover{

    transform:scale(1.05);

}

.playing{

    animation:pulse 1.5s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:
            0 0 15px #00d4ff;

    }

    50%{

        box-shadow:
            0 0 30px #00d4ff,
            0 0 60px #7c3aed;

    }

    100%{

        box-shadow:
            0 0 15px #00d4ff;

    }

}

.cinematic-footer{
    padding:80px 20px;
    background:linear-gradient(
        to top,
        #020617,
        #050b1f,
        #000814
    );
    border-top:1px solid rgba(0,255,255,.15);
    text-align:center;
}

.footer-logo h2{
    color:#fff;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.footer-logo p{
    color:#7dd3fc;
    opacity:.8;
}

.footer-grid{
    margin:50px auto;
    display:flex;
    justify-content:center;
    gap:80px;
    flex-wrap:wrap;
}

.footer-grid h4{
    color:#67e8f9;
    margin-bottom:15px;
}

.footer-grid a{
    display:block;
    color:#94a3b8;
    text-decoration:none;
    margin:8px 0;
    transition:.3s;
}

.footer-grid a:hover{
    color:#67e8f9;
    text-shadow:0 0 15px #22d3ee;
}

.footer-quote{
    margin-top:40px;
    color:#64748b;
    font-style:italic;
}

.footer-copy{
    margin-top:25px;
    color:#475569;
    font-size:.9rem;
}

/* =========================
BLOG
========================= */

#blog{
    position:relative;
    padding:100px 0;
}

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

.blog-card{

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

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

    border-radius:20px;

    overflow:hidden;

    backdrop-filter:blur(12px);

    transition:.35s ease;
}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,212,255,.15);
}

.blog-image{

    width:100%;
    height:220px;

    overflow:hidden;
}

.blog-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.blog-card:hover img{

    transform:scale(1.05);
}

.blog-content{

    padding:24px;
}

.blog-category{

    display:inline-block;

    padding:6px 12px;

    border-radius:50px;

    background:rgba(0,212,255,.15);

    color:#00d4ff;

    font-size:.8rem;

    margin-bottom:12px;
}

.blog-content h3{

    font-size:1.2rem;

    margin-bottom:15px;

    line-height:1.5;
}

.blog-content p{

    opacity:.8;

    line-height:1.7;

    margin-bottom:18px;
}

.blog-content a{

    color:#00d4ff;

    text-decoration:none;

    font-weight:600;
}

.blog-more{

    text-align:center;

    margin-top:50px;
}

.blog-date{

    display:block;

    opacity:.6;

    margin-bottom:10px;

    font-size:.8rem;
}