@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:white;
    min-height:100vh;
    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.navbar{
    width:100%;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    z-index:1000;
    background:rgba(15,23,42,0.85);
    backdrop-filter:blur(12px);
}

.logo{
    font-size:30px;
    font-weight:700;
    background:linear-gradient(90deg,#38bdf8,#8b5cf6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-links{
    display:flex;
    align-items:center;
}

.nav-links a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#38bdf8;
}

/* =========================
HERO SECTION
========================= */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    padding:20px;
    background:
    radial-gradient(circle at top left,#1e3a8a,transparent 40%),
    radial-gradient(circle at bottom right,#7c3aed,transparent 40%),
    #0f172a;
}

.hero h1{
    font-size:72px;
    max-width:900px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    max-width:700px;
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:40px;
}

.hero button{
    padding:16px 40px;
    border:none;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    background:linear-gradient(90deg,#3b82f6,#8b5cf6);
    color:white;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(59,130,246,0.4);
}

.hero button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(59,130,246,0.6);
}

/* =========================
GLASS CARD
========================= */

.container{
    width:420px;
    margin:auto;
    margin-top:140px;
    padding:40px;
    border-radius:24px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 8px 32px rgba(0,0,0,0.3);
}

.container h2{
    text-align:center;
    margin-bottom:30px;
    font-size:34px;
}

/* =========================
INPUTS
========================= */

input{
    width:100%;
    padding:16px;
    margin-top:18px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    color:white;
    outline:none;
    font-size:15px;
    border:1px solid rgba(255,255,255,0.08);
}

input::placeholder{
    color:#cbd5e1;
}

/* =========================
BUTTONS
========================= */

button{
    width:100%;
    margin-top:24px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#2563eb,#8b5cf6);
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
    opacity:0.95;
}

/* =========================
SERVICES
========================= */

.services{
    padding:120px 40px;
}

.section-title{
    text-align:center;
    font-size:52px;
    margin-bottom:70px;
}

.cards{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.card{
    width:320px;
    padding:35px;
    border-radius:24px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#3b82f6;
}

.card h3{
    font-size:24px;
    margin-bottom:18px;
}

.card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* =========================
FOOTER
========================= */

.footer{
    padding:60px 30px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#94a3b8;
    margin-top:80px;
}

/* =========================
TOAST
========================= */

#toast{
    position:fixed;
    top:30px;
    right:30px;
    padding:18px 26px;
    border-radius:14px;
    background:rgba(15,23,42,0.95);
    color:white;
    display:none;
    z-index:9999;
    box-shadow:0 10px 40px rgba(0,0,0,0.4);
    border:1px solid rgba(255,255,255,0.08);
    animation:fadeIn 0.4s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
ADS
========================= */

.ads-container{
    width:90%;
    margin:auto;
    margin-top:120px;
}

.ad-card{
    padding:30px;
    border-radius:20px;
    margin-bottom:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
}

.ad-card h2{
    margin-bottom:15px;
}

.ad-card p{
    color:#cbd5e1;
}

/* =========================
UPLOAD PAGE
========================= */

.upload-hero{
    padding-top:140px;
    padding-bottom:50px;
    text-align:center;
}

.upload-hero h1{
    font-size:64px;
    font-weight:700;
    margin-bottom:20px;
    background:linear-gradient(90deg,#ffffff,#c4b5fd);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.upload-hero p{
    color:#cbd5e1;
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.upload-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    padding:20px;
    padding-bottom:80px;
}

.upload-card{
    width:850px;
    padding:45px;
    border-radius:30px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.upload-header h2{
    font-size:38px;
    margin-bottom:12px;
}

.upload-header p{
    color:#cbd5e1;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:28px;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    font-weight:600;
    font-size:15px;
}

.form-group small{
    color:#94a3b8;
    display:block;
    margin-top:10px;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-row .form-group{
    flex:1;
}

.file-upload-box{
    border:2px dashed rgba(255,255,255,0.12);
    border-radius:24px;
    padding:45px;
    text-align:center;
    background:rgba(255,255,255,0.03);
    transition:0.3s;
}

.file-upload-box:hover{
    border-color:#3b82f6;
    background:rgba(59,130,246,0.06);
}

.file-upload-box p{
    color:#cbd5e1;
    margin-top:15px;
}

.file-upload-box input{
    background:transparent;
    border:none;
}

.preview-image{
    width:100%;
    margin-top:25px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.preview-video{
    width:100%;
    margin-top:25px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.summary-box{
    margin-top:35px;
    padding:30px;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
}

.summary-box h3{
    margin-bottom:20px;
    font-size:24px;
}

.summary-box ul{
    padding-left:20px;
}

.summary-box li{
    margin-bottom:12px;
    color:#cbd5e1;
}

.upload-btn{
    margin-top:35px;
    height:62px;
    font-size:18px;
    font-weight:700;
    border-radius:18px;
    background:linear-gradient(90deg,#2563eb,#8b5cf6);
    box-shadow:0 10px 30px rgba(59,130,246,0.4);
}

.upload-btn:hover{
    transform:translateY(-3px);
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    .container{
        width:92%;
    }

    .navbar{
        padding:20px;
    }

    .section-title{
        font-size:38px;
    }

    .upload-card{
        width:100%;
        padding:25px;
    }

    .upload-hero h1{
        font-size:40px;
    }

    .form-row{
        flex-direction:column;
    }
}