/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
    color:#fff;
    min-height:100vh;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1100px;
    margin:auto;
    padding:50px 20px;
}

.card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(14px);
    padding:45px;
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
    animation:fadeUp 1s ease;
}

.badge{
    display:inline-block;
    background:#22c55e;
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:18px;
    font-weight:bold;
}

h1{
    font-size:40px;
    line-height:1.3;
    margin-bottom:30px;
    color:#ffffff;
}

h2{
    font-size:28px;
    margin-top:28px;
    margin-bottom:14px;
    color:#38bdf8;
}

p{
    font-size:18px;
    line-height:1.9;
    color:#e5e7eb;
    margin-bottom:18px;
}

strong{
    color:#22c55e;
}

a{
    color:#facc15;
    text-decoration:none;
    word-break:break-word;
}

a:hover{
    text-decoration:underline;
}

.info-box{
    margin-top:35px;
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
}

.tags{
    margin-top:25px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.tags span{
    padding:10px 14px;
    background:#1d4ed8;
    border-radius:30px;
    font-size:14px;
}

.bg-shape{
    position:fixed;
    border-radius:50%;
    filter:blur(100px);
    opacity:0.25;
    z-index:-1;
}

.shape1{
    width:250px;
    height:250px;
    background:#22c55e;
    top:30px;
    left:30px;
}

.shape2{
    width:300px;
    height:300px;
    background:#3b82f6;
    bottom:30px;
    right:30px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

.card{
    padding:25px;
}

h1{
    font-size:28px;
}

h2{
    font-size:22px;
}

p{
    font-size:16px;
}

}