/* ================== Reset & Base ================== */
* {margin:0;padding:0;box-sizing:border-box;}
body {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #e0e0e0;
    line-height:1.7;
    overflow-x:hidden;
    transition: all 0.5s ease;
}

/* ================== Animated Background ================== */
@keyframes bgAnimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
body{
    background-size:200% 200%;
    animation:bgAnimation 30s ease infinite;
}

/* ================== Links & Buttons ================== */
a {
    text-decoration:none;
    color:#fffb00;
    transition: color 0.3s, transform 0.3s;
}
a:hover{color:#facc15; transform: scale(1.05);}
button{
    cursor:pointer;
    font-family: inherit;
    border:none;
    border-radius:12px;
    font-weight:700;
    padding:0.6rem 1.3rem;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ff005e, #facc15);
    color:#0e0f14;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}
button:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow:0 6px 20px rgba(255,255,255,0.4);
    background: linear-gradient(90deg, #facc15, #ff005e);
}

/* ================== Top Bar ================== */
.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 2rem;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter: blur(8px);
    background: rgba(20,20,30,0.85);
    box-shadow:0 5px 20px rgba(0,0,0,0.7);
}
.top-bar h1{
    font-weight:900;
    font-size:2rem;
    letter-spacing:2px;
    color:#fffb00;
    text-shadow: 0 0 15px #facc15, 0 0 25px #ff005e;
}

/* ================== Sidebar ================== */
#sidebar{
    position:fixed;
    top:0;
    left:-260px;
    width:260px;
    height:100%;
    backdrop-filter:blur(10px);
    background:rgba(15,15,25,0.95);
    padding-top:80px;
    transition:0.4s;
    box-shadow:3px 0 25px rgba(255,255,0,0.3);
    border-radius:0 20px 20px 0;
    z-index:998;
}
#sidebar.open{left:0;}
#sidebar ul li a{
    display:block;
    padding:1rem 1.5rem;
    font-weight:600;
    font-size:1.05rem;
    border-left:3px solid transparent;
    transition: 0.3s;
    color:#e0e0e0;
}
#sidebar ul li a:hover{
    border-left:3px solid #facc15;
    background:rgba(255,202,21,0.15);
    color:#fffb00;
}

/* ================== Main Content ================== */
main{
    margin:1rem 1.5rem;
    transition:margin-left 0.3s;
}
section{
    margin-bottom:2.5rem;
    padding:2rem;
    border-radius:15px;
    background: rgba(25,25,35,0.85);
    box-shadow:0 10px 25px rgba(255,255,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    opacity:0;
    transform: translateY(30px);
}
section:hover{
    transform: translateY(-8px);
    box-shadow:0 15px 40px rgba(255,255,0,0.5);
}
h2{
    font-size:2rem;
    font-weight:900;
    margin-bottom:1rem;
    color:#facc15;
    text-shadow: 0 0 15px #ff005e, 0 0 25px #facc15;
}
p, li{
    font-size:1rem;
    margin-bottom:0.8rem;
    color:#e0e0e0;
}
ul li{
    padding-left:1.5rem;
    position:relative;
}
ul li::before{
    content:"✨";
    position:absolute;
    left:0;
    color:#fffb00;
}

/* ================== WhatsApp Button ================== */
.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:white;
    font-weight:700;
    padding:0.7rem 1.5rem;
    border-radius:15px;
    box-shadow:0 6px 20px rgba(0,255,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover{
    transform: scale(1.1) rotate(-2deg);
    box-shadow:0 8px 25px rgba(0,255,0,0.7);
}

/* ================== Footer ================== */
footer{
    text-align:center;
    padding:2rem 1rem;
    background: rgba(10,10,20,0.95);
    border-top:2px solid #facc15;
    margin-top:3rem;
    font-size:1rem;
    color:#facc15;
    letter-spacing:1px;
}
footer a{
    margin:0 0.6rem;
    font-weight:700;
    color:#fffb00;
    display:inline-flex;
    align-items:center;
}
footer a::before{
    content:"📸";
    margin-right:0.3rem;
}
footer a[href*="snapchat"]::before{
    content:"👻";
}
footer a:hover{
    color:#facc15;
    text-shadow:0 0 10px #ff005e, 0 0 20px #facc15;
}

/* ================== Responsive ================== */
@media(max-width:768px){
    .top-bar h1{font-size:1.5rem;}
    section{padding:1.5rem;}
    #sidebar{width:220px;}
}

/* ================== Animations ================== */
html{scroll-behavior:smooth;}
@keyframes fadeUp{to{opacity:1; transform:translateY(0);}}
section{animation:fadeUp 0.7s forwards;}
section:nth-child(1){animation-delay:0.1s;}
section:nth-child(2){animation-delay:0.3s;}
section:nth-child(3){animation-delay:0.5s;}
section:nth-child(4){animation-delay:0.7s;}
section:nth-child(5){animation-delay:0.9s;}