@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');

:root{
 --bg:#0f0f14;
 --gold:#c6a75e;
 --soft:#e6c98f;
 --text:#f5f5f5;
 --muted:#b8b8b8;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
 background:var(--bg);
 color:var(--text);
 font-family:'Inter',sans-serif;
 line-height:1.8;
}

h1,h2,h3{
 font-family:'Cormorant Garamond',serif;
 color:var(--soft);
 margin-bottom:15px;
}

header{
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:25px 60px;
 border-bottom:1px solid rgba(198,167,94,0.2);
}

.logo{color:var(--gold);font-size:22px;font-weight:600;}

nav a{
 margin:0 15px;
 text-decoration:none;
 color:var(--muted);
 transition:0.3s;
}

nav a:hover{color:var(--gold);}

select{
 background:transparent;
 color:var(--gold);
 border:1px solid var(--gold);
 padding:4px 8px;
}

.page-banner{
 text-align:center;
 padding:80px 20px;
 background:linear-gradient(180deg,#1a1a22,#0f0f14);
}

.content{padding:70px 80px;}

.hero{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap:60px;
}

.hero img{
 width:340px;
 border:2px solid var(--gold);
}

.box{
 margin-bottom:40px;
 padding:30px;
 border:1px solid rgba(198,167,94,0.2);
 transition:0.4s;
}

.box:hover{
 border-color:var(--gold);
 transform:translateY(-4px);
}

.whatsapp{
 position:fixed;
 bottom:30px;
 right:30px;
 background:var(--gold);
 color:black;
 padding:12px 20px;
 border-radius:30px;
 text-decoration:none;
 font-weight:600;
}

footer{
 text-align:center;
 padding:40px;
 border-top:1px solid rgba(198,167,94,0.2);
 font-size:13px;
 color:#aaa;
}
/* ===== FULLSCREEN DISCLAIMER ===== */
#disclaimer-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(15,15,15,0.98);
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

#disclaimer-box{
max-width:720px;
width:90%;
background:#141414;
padding:40px;
border:1px solid #c6a85b;
color:#e6d5a7;
box-shadow:0 0 40px rgba(0,0,0,0.8);
}

#disclaimer-box h2{
font-family:'Cormorant Garamond',serif;
color:#c6a85b;
margin-bottom:20px;
}

#disclaimer-box p{
font-size:14px;
margin-bottom:15px;
line-height:1.7;
}

#disclaimer-buttons{
margin-top:25px;
display:flex;
gap:20px;
}

#agree-btn{
background:#c6a85b;
color:#000;
padding:10px 20px;
border:none;
cursor:pointer;
font-weight:600;
}

#decline-btn{
border:1px solid #c6a85b;
color:#e6d5a7;
padding:10px 20px;
text-decoration:none;
}