:root{

--primary:#ff4fa3;
--secondary:#ff7bc3;

--bg:#fff8fc;
--card:#ffffff;

--text:#111827;
--muted:#6b7280;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

section{
padding:90px 5%;
}

/* HERO */

.rbx-hero{

min-height:80vh;

display:flex;
justify-content:center;
align-items:center;
text-align:center;

}

.hero-content{
max-width:850px;
}

.rbx-badge{

display:inline-block;

padding:12px 20px;

background:#ffe8f4;

color:#ff4fa3;

font-weight:700;

border-radius:999px;

margin-bottom:25px;

}

.hero-content h1{

font-size:72px;

line-height:1.1;

font-weight:900;

margin-bottom:20px;

}

.hero-content h1 span{

background:linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero-content p{

font-size:18px;

color:var(--muted);

line-height:1.9;

margin-bottom:35px;

}

.hero-search{

display:flex;
justify-content:center;

gap:10px;

}

.hero-search input{

width:420px;

padding:16px 20px;

border:none;

outline:none;

border-radius:15px;

background:white;

}

.hero-search button{

padding:16px 25px;

border:none;

cursor:pointer;

border-radius:15px;

background:linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

color:white;

font-weight:700;

}

/* SECTION */

.section-title{

text-align:center;

margin-bottom:50px;

}

.section-title span{

color:#ff4fa3;

font-weight:700;

}

.section-title h2{

font-size:50px;

font-weight:900;

margin-top:10px;

}

/* GAME GRID */

.games-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.game-card{

background:white;

padding:25px;

border-radius:25px;

text-decoration:none;

color:inherit;

text-align:center;

transition:.3s;

box-shadow:
0 15px 40px rgba(0,0,0,.05);

}

.game-card:hover{

transform:translateY(-8px);

}

.game-card img{

width:70px;
height:70px;

border-radius:18px;

margin-bottom:15px;

}

.game-card h3{

font-size:20px;

margin-bottom:8px;

}

.game-card p{

color:var(--muted);

}

/* MOBILE */

@media(max-width:768px){

.hero-content h1{
font-size:42px;
}

.hero-search{
flex-direction:column;
}

.hero-search input{
width:100%;
}

.section-title h2{
font-size:32px;
}

}

/* =====================
   ITEMS SECTION
===================== */

.items-section{
padding:120px 5%;
}

.items-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

/* CARD */

.item-card{

background:white;

border-radius:30px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.05);

transition:.35s;

border:1px solid #ffe5f3;

}

.item-card:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 60px rgba(255,79,163,.15);

}

.item-image{

height:240px;

display:flex;
justify-content:center;
align-items:center;

background:
linear-gradient(
180deg,
#fff0f7,
#ffffff
);

}

.item-image img{

width:140px;
height:140px;

object-fit:contain;

}

/* INFO */

.item-info{

padding:25px;

}

.item-info h3{

font-size:24px;

font-weight:800;

margin-bottom:20px;

}

.item-stats{

display:grid;

grid-template-columns:
1fr 1fr;

gap:15px;

margin-bottom:20px;

}

.item-stats div{

background:#fff7fb;

padding:15px;

border-radius:15px;

text-align:center;

}

.item-stats span{

display:block;

font-size:13px;

color:#888;

margin-bottom:5px;

}

.item-stats strong{

font-size:24px;

font-weight:800;

color:#ff4fa3;

}

/* BADGES */

.badges{

display:flex;

gap:10px;

flex-wrap:wrap;

margin-bottom:25px;

}

.badges span{

padding:10px 15px;

border-radius:999px;

font-size:13px;

font-weight:700;

}

.high{

background:#dcfce7;
color:#16a34a;

}

.medium{

background:#fef3c7;
color:#ca8a04;

}

.low{

background:#fee2e2;
color:#dc2626;

}

.up{

background:#ecfdf5;
color:#16a34a;

}

.flat{

background:#f3f4f6;
color:#666;

}

.down{

background:#fee2e2;
color:#dc2626;

}

/* BUTTON */

.view-item{

display:block;

text-align:center;

padding:15px;

border-radius:15px;

text-decoration:none;

font-weight:700;

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

color:white;

transition:.3s;

}

.view-item:hover{

transform:translateY(-3px);

}

/* MOBILE */

@media(max-width:768px){

.items-grid{

grid-template-columns:1fr;

}

.item-image{

height:180px;

}

.item-image img{

width:110px;
height:110px;

}

.item-info h3{

font-size:20px;

}

}

/* =====================
 ITEM PAGE
===================== */

.item-hero{

padding:140px 5%;

display:grid;

grid-template-columns:
450px 1fr;

gap:60px;

align-items:center;

}

.item-preview{

background:white;

padding:50px;

border-radius:35px;

box-shadow:
0 20px 50px rgba(0,0,0,.05);

}

.item-preview img{

width:100%;

max-width:320px;

display:block;

margin:auto;

}

.item-game{

display:inline-block;

padding:10px 18px;

background:#ffe9f4;

color:#ff4fa3;

border-radius:999px;

font-weight:700;

margin-bottom:20px;

}

.item-right h1{

font-size:70px;

font-weight:900;

margin-bottom:15px;

}

.item-right p{

font-size:18px;

color:#666;

line-height:1.9;

margin-bottom:30px;

}

/* VALUE BOX */

.value-boxes{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:15px;

}

.value-boxes div{

background:white;

padding:25px;

border-radius:20px;

text-align:center;

border:1px solid #ffe5f3;

}

.value-boxes span{

display:block;

font-size:12px;

color:#888;

margin-bottom:8px;

}

.value-boxes strong{

font-size:28px;

font-weight:900;

color:#ff4fa3;

}

/* CHART */

.chart-section{
padding:100px 5%;
}

.chart-card{

background:white;

padding:40px;

border-radius:30px;

box-shadow:
0 15px 40px rgba(0,0,0,.05);

}

.fake-chart{

height:400px;

border-radius:20px;

background:
linear-gradient(
180deg,
#fff0f7,
#ffffff
);

position:relative;

overflow:hidden;

}

.line{

position:absolute;

width:90%;
height:5px;

background:#ff4fa3;

top:55%;

left:5%;

transform:
rotate(-12deg);

border-radius:20px;

}

/* CALCULATOR */

.trade-calculator{

padding:120px 5%;

}

.calculator-card{

background:white;

padding:40px;

border-radius:30px;

box-shadow:
0 15px 40px rgba(0,0,0,.05);

display:grid;

gap:25px;

}

.trade-side input{

width:100%;

padding:18px;

border:none;

outline:none;

background:#fff6fa;

border-radius:15px;

font-size:16px;

}

.calc-btn{

padding:18px;

border:none;

cursor:pointer;

border-radius:15px;

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

color:white;

font-weight:700;

}

.result-box{

padding:25px;

background:#ecfdf5;

color:#16a34a;

font-weight:800;

text-align:center;

border-radius:15px;

}
@media(max-width:900px){

.item-hero{

grid-template-columns:1fr;

text-align:center;

}

.value-boxes{

grid-template-columns:
1fr 1fr;

}

.item-right h1{

font-size:42px;

}

}

@media(max-width:600px){

.value-boxes{

grid-template-columns:1fr;

}

.fake-chart{

height:250px;

}

}

/* =====================
 MARKET DASHBOARD
===================== */

.market-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.market-card{

background:white;

padding:35px;

border-radius:25px;

text-align:center;

border:1px solid #ffe5f3;

box-shadow:
0 10px 35px rgba(0,0,0,.05);

transition:.3s;

}

.market-card:hover{

transform:translateY(-8px);

}

.market-card h3{

font-size:18px;

margin-bottom:15px;

}

.market-card strong{

font-size:42px;

font-weight:900;

color:#ff4fa3;

display:block;

margin-bottom:10px;

}

.market-card p{

color:#777;

}

/* =====================
 TRENDING
===================== */

.trending-section{

padding:120px 5%;

}

.trending-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.trend-card{

background:white;

padding:30px;

border-radius:30px;

text-align:center;

position:relative;

border:1px solid #ffe5f3;

transition:.35s;

}

.trend-card:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 60px rgba(255,79,163,.15);

}

.rank{

position:absolute;

top:20px;
right:20px;

width:40px;
height:40px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:#ff4fa3;

color:white;

font-weight:700;

}

.trend-card img{

width:120px;
height:120px;

object-fit:contain;

margin-bottom:20px;

}

.trend-card h3{

font-size:22px;

margin-bottom:10px;

}

.trend-card p{

font-weight:800;

color:#16a34a;

font-size:20px;

}

/* =====================
 LEADERBOARD
===================== */

.leaderboard{

max-width:1000px;

margin:auto;

display:flex;

flex-direction:column;

gap:15px;

}

.leaderboard-row{

background:white;

padding:25px 30px;

border-radius:20px;

display:flex;

justify-content:space-between;

align-items:center;

border:1px solid #ffe5f3;

transition:.3s;

}

.leaderboard-row:hover{

transform:translateX(8px);

}

.leaderboard-row span{

font-size:20px;

font-weight:900;

color:#ff4fa3;

width:80px;

}

.item-name{

flex:1;

font-weight:700;

}

.leaderboard-row strong{

font-size:24px;

font-weight:900;

}

/* MOBILE */

@media(max-width:768px){

.leaderboard-row{

flex-wrap:wrap;

gap:10px;

}

.item-name{

width:100%;

}

}.filter-wrapper{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:15px;

margin-bottom:40px;

}

.filter-wrapper select,
.filter-wrapper input{

padding:16px 20px;

border:none;

outline:none;

border-radius:15px;

background:white;

box-shadow:
0 8px 25px rgba(0,0,0,.04);

}

/* =======================
   BLOX FRUITS VALUES
======================= */

.filter-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    margin-bottom:40px;
}

.filter-wrapper input,
.filter-wrapper select{
    padding:15px 20px;
    border:none;
    outline:none;
    border-radius:15px;
    background:#fff;
    min-width:220px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* Cards */

.items-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.item-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    border:1px solid #ffe5f2;
}

.item-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(255,79,163,.18);
}

.item-image{
    background:linear-gradient(180deg,#fff0f8,#fff);
    display:flex;
    justify-content:center;
    align-items:center;
    height:220px;
}

.item-image img{
    width:140px;
    height:140px;
    object-fit:contain;
}

.item-info{
    padding:25px;
}

.item-info h3{
    font-size:24px;
    margin-bottom:20px;
    font-weight:800;
}

/* Stats */

.item-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:20px;
}

.item-stats div{
    background:#fff7fb;
    border-radius:15px;
    padding:15px;
    text-align:center;
}

.item-stats span{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:5px;
}

.item-stats strong{
    font-size:22px;
    color:#ff4fa3;
}

/* Badges */

.badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.badges span{
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.high{
    background:#dcfce7;
    color:#16a34a;
}

.medium{
    background:#fef3c7;
    color:#ca8a04;
}

.low{
    background:#fee2e2;
    color:#dc2626;
}

.up{
    background:#dbeafe;
    color:#2563eb;
}

.flat{
    background:#f3f4f6;
    color:#555;
}

.down{
    background:#fee2e2;
    color:#dc2626;
}

/* Button */

.view-item{
    display:block;
    text-align:center;
    padding:15px;
    border-radius:15px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,#ff4fa3,#ff7bc3);
    transition:.3s;
}

.view-item:hover{
    transform:translateY(-3px);
    opacity:.9;
}

/* Mobile */

@media(max-width:768px){

.item-stats{
    grid-template-columns:1fr;
}

.item-image{
    height:180px;
}

.item-image img{
    width:110px;
    height:110px;
}

.item-info h3{
    font-size:20px;
}

.filter-wrapper{
    flex-direction:column;
}

.filter-wrapper input,
.filter-wrapper select{
    width:100%;
}

}

/* =========================
        NAVBAR
========================= */

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 6%;

background:rgba(255,255,255,.9);

backdrop-filter:blur(12px);

position:sticky;
top:0;
left:0;

z-index:1000;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.logo{

font-size:30px;
font-weight:800;

background:linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

cursor:pointer;

}

.nav-links{

display:flex;
align-items:center;

gap:35px;

list-style:none;

}

.nav-links a{

text-decoration:none;

font-size:16px;
font-weight:600;

color:#333;

position:relative;

transition:.3s;

}

.nav-links a:hover{

color:#ff4fa3;

}

/* Underline Animation */

.nav-links a::after{

content:"";

position:absolute;

left:0;
bottom:-6px;

width:0;
height:3px;

background:#ff4fa3;

border-radius:50px;

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}

/* Button Hover */

.nav-links li{

transition:.3s;

}

.nav-links li:hover{

transform:translateY(-3px);

}

/* =========================
        MOBILE
========================= */

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

color:#ff4fa3;

}

@media(max-width:768px){

.navbar{

padding:18px 25px;

}

.menu-btn{

display:block;

}

.nav-links{

position:absolute;

top:80px;
left:0;

width:100%;

background:white;

display:flex;

flex-direction:column;

gap:25px;

padding:30px 0;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transform:translateY(-150%);

opacity:0;

pointer-events:none;

transition:.4s;

}

.nav-links.active{

transform:translateY(0);

opacity:1;

pointer-events:auto;

}

}