/* ================= GLOBAL ================= */
body{
font-family: Arial, sans-serif;
margin:0;
color:#3b0000;
background:linear-gradient(135deg,#FFF5F5,#FFEAEA);
overflow-x:hidden;
}

/* REMOVE STAR BG (not premium anymore) */
body::before{
display:none;
}

/* ================= HEADER ================= */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#A83232;
color:white;
position:sticky;
top:0;
z-index:1000;
}

/* LOGO */
.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:bold;
color:#FFD700;
}

.logo img{
width:40px;
height:40px;
border-radius:50%;
}

/* NAV */
nav a{
margin-left:20px;
color:#FFD700;
text-decoration:none;
transition:0.3s;
}

nav a:hover{
color:white;
}

/* ================= CONTAINER ================= */
.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

/* ================= FORM ================= */
.formbox{
max-width:500px;
margin:auto;
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.formbox input{
width:100%;
padding:10px;
margin:10px 0;
border-radius:6px;
border:1px solid #ccc;
}

/* ================= BUTTON ================= */
button{
background:linear-gradient(90deg,#A83232,#FFD700);
border:none;
padding:10px 15px;
border-radius:8px;
color:white;
cursor:pointer;
font-weight:bold;
transition:0.3s;
}

button:hover{
transform:scale(1.05);
}

/* ================= RESULT ================= */
#result{
margin-top:20px;
line-height:1.6;
color:#3b0000;
}

#result *{
color:#3b0000 !important;
}

/* ================= GRID ================= */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

/* ================= CARD ================= */
.card{
background:white;
padding:25px;
border-radius:16px;
text-align:center;
transition:0.3s;
border:1px solid rgba(168,50,50,0.2);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* ================= KUNDLI ================= */
.kundli-card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.kundli-card h3{
color:#A83232;
}

/* ================= DIAMOND ================= */
.diamond{
background:#FFF5F5;
border:2px solid #A83232;
}

/* ================= PRODUCT ================= */
.product-card{
background:white;
border-radius:16px;
padding:20px;
text-align:center;
border:1px solid rgba(168,50,50,0.2);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 30px rgba(168,50,50,0.2);
}

.product-card h3{
color:#A83232;
}

.product-card p{
color:#FFD700;
font-weight:bold;
}

/* ================= SERVICE ================= */
.service-card{
background:white;
border-radius:16px;
padding:20px;
text-align:center;
border:1px solid rgba(168,50,50,0.2);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 30px rgba(168,50,50,0.2);
}

/* ================= CTA ================= */
.cta{
background:linear-gradient(90deg,#A83232,#FFD700);
color:white;
padding:60px;
text-align:center;
}

/* ================= WALLET ================= */
.wallet{
background:#FFD700;
color:black;
padding:8px 14px;
border-radius:8px;
font-weight:bold;
}

/* ================= FOOTER ================= */
footer{
text-align:center;
padding:20px;
color:#777;
}

/* ================= PRICE ================= */
.old-price{
text-decoration:line-through;
color:#aaa;
}

.new-price{
color:#00aa66;
font-weight:bold;
}

.urgency{
color:#ff4444;
}

.social-proof{
color:#A83232;
}

/* ================= MOBILE ================= */
@media(max-width:600px){

header{
padding:15px;
}

.logo{
font-size:18px;
}

}
/* ===== FORCE NEW THEME OVERRIDE ===== */

body{
background:linear-gradient(135deg,#FFF5F5,#FFEAEA) !important;
color:#3b0000 !important;
}

header{
background:#A83232 !important;
color:white !important;
}

.logo{
color:#FFD700 !important;
}

nav a{
color:#FFD700 !important;
}

.card,
.product-card,
.service-card,
.kundli-card{
background:white !important;
color:#3b0000 !important;
border:1px solid rgba(168,50,50,0.2) !important;
}

button{
background:linear-gradient(90deg,#A83232,#FFD700) !important;
color:white !important;
}
