*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;

background:

url("images/bg.gif");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:#fff;

min-height:100vh;

overflow-x:hidden;

}

/* SCROLLBAR */

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-thumb{
background:#ff9800;
border-radius:20px;
}

/* HEADER */

.header{

padding:60px 20px 30px;

text-align:center;

}

.header h1{

font-family:Orbitron;

font-size:48px;

letter-spacing:4px;

color:#ffb300;

text-shadow:

0 0 20px rgba(255,179,0,.5),

0 0 45px rgba(255,140,0,.4);

}

.header p{

margin-top:15px;

color:#bfbfbf;

font-size:18px;

}

/* GRID */

.packages{

width:min(1300px,95%);

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

padding:20px;

}

/* CARD */

.card{

position:relative;

overflow:hidden;

border-radius:22px;

padding:35px;

cursor:pointer;

transition:.35s;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

box-shadow:

0 15px 35px rgba(0,0,0,.35);

}

.card::before{

content:"";

position:absolute;

width:300px;

height:300px;

background:

radial-gradient(circle,#ff980022,transparent);

top:-120px;

right:-120px;

transition:.4s;

}

.card:hover{

transform:translateY(-8px);

border-color:#ff9800;

box-shadow:

0 0 25px rgba(255,152,0,.35),

0 25px 50px rgba(0,0,0,.45);

}

.card:hover::before{

transform:scale(1.4);

}

.card.selected{

border:2px solid #ff9800;

box-shadow:

0 0 35px rgba(255,152,0,.45);

}

/* ICON */

.package-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

background:

linear-gradient(135deg,#ff9800,#ff5a00);

box-shadow:

0 0 25px rgba(255,152,0,.4);

}

/* TEXT */

.card h2{

font-family:Orbitron;

font-size:28px;

text-align:center;

color:#ffb300;

margin-bottom:15px;

}

.ucash{

font-size:30px;

font-weight:700;

text-align:center;

margin-bottom:12px;

}

.price{

text-align:center;

font-size:22px;

color:#dadada;

}

/* BONUS */

.bonus{

margin-top:20px;

padding:8px;

border-radius:12px;

background:#2d2d2d;

text-align:center;

font-size:14px;

color:#FFD54F;

}

/* SUMMARY */

.summary{

width:min(500px,95%);

margin:60px auto;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(15px);

border-radius:25px;

padding:30px;

text-align:center;

}

.summary h2{

font-family:Orbitron;

color:#ffb300;

margin-bottom:20px;

}

.summary span{

display:block;

margin:12px 0;

font-size:20px;

}

/* BUTTON */

button{

width:100%;

padding:16px;

margin-top:25px;

border:none;

border-radius:14px;

font-size:18px;

font-weight:bold;

cursor:pointer;

background:

linear-gradient(135deg,#ff9800,#ff5a00);

color:#fff;

transition:.3s;

}

button:hover{

transform:translateY(-3px);

box-shadow:

0 0 30px rgba(255,152,0,.45);

}

/* MOBILE */

@media(max-width:768px){

.header h1{

font-size:34px;

}

.card{

padding:25px;

}

}
