:root{
    --primary:#e11d48;
    --primary-hover:#be123c;

    --bg:#020617;
    --surface:#0f172a;
    --surface-2:#1e293b;

    --text:#f8fafc;
    --text-muted:#94a3b8;

    --border:rgba(255,255,255,.08);

    --success:#22c55e;
    --warning:#f59e0b;
    --danger:#ef4444;

    --radius:16px;

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

    --transition:.25s;
}

[data-theme="light"]{

    --bg:#f8fafc;
    --surface:#ffffff;
    --surface-2:#f1f5f9;

    --text:#0f172a;
    --text-muted:#64748b;

    --border:rgba(15,23,42,.08);

    --shadow:0 12px 30px rgba(15,23,42,.08);
}

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

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);

    color:var(--text);

    font-family:"Inter",sans-serif;

    transition:
        background var(--transition),
        color var(--transition);

    line-height:1.6;

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

section{
    padding:80px 0;
}

h1,h2,h3,h4,h5,h6{
    color:var(--text);
    font-weight:700;
    line-height:1.2;
}

p{
    color:var(--text-muted);
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
    display:block;
}

button{
    font-family:inherit;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:14px 24px;

    border:none;
    border-radius:14px;

    cursor:pointer;

    background:var(--primary);
    color:#fff;

    font-weight:700;

    transition:all var(--transition);
}

.btn:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

.card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:all var(--transition);

}

.card:hover{

    transform:translateY(-5px);

}/* Responsive */
@media (max-width:900px){

    section{
        padding:60px 0;
    }

    .container{
        width:94%;
    }

}

/* Utilities */
.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}

/* Animation */

.fade-up{

    opacity:0;

    transform:translateY(20px);

    animation:fadeUp .7s ease forwards;

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Scrollbar */

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

::-webkit-scrollbar-track{
    background:var(--bg);
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-hover);
}

/* Text Selection */

::selection{
    background:var(--primary);
    color:#fff;
}
