*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#0f0f0f;
color:#fff;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 80px;
background:black; /*#111*/
border-bottom:0px solid #2f2f2f; 
position: relative;
margin-left: 500px;
}

.logo{
color:#d4af37;
font-size:28px;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
font-weight: 600%;
font-size:20px;
}

.nav-links a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.nav-links a:hover{
color:#d4af37;
}

.login-btn{
padding:10px 20px;
border:1px solid #d4af37;
border-radius:8px;
}


/* SOCIAL MEDIA ICONS - GOLD ONLY */
.socials a i{
    color:#d4af37;
    transition:0.3s;
}

.socials a:hover i{
    color:#ffffff;
    transform:scale(1.2);
}



.chatbot-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* BUTTON */
.chatbot-float-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #d4af37; /* GOLD */
  color: #111;
  font-size: 26px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* HOVER EFFECT */
.chatbot-float-btn:hover {
  background-color: #c49b2c;
  transform: scale(1.1);
}

/* TOOLTIP */
.chatbot-tooltip {
  position: absolute;
  right: 85px;
  bottom: 20px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s ease;
  pointer-events: none;
}

/* SHOW TOOLTIP ON HOVER */
.chatbot-container:hover .chatbot-tooltip {
  opacity: 1;
  transform: translateX(0);
}


body {
  font-family: Arial;
}

/* BUTTON */
.connect-btn {
  padding: 12px 20px;
  background: #d4af37;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 999;
}

/* MODAL */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 420px;
  background: #121212;
  color: white;
  border-radius: 16px;
  padding: 20px;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: 0.3s ease;
}

/* HEADER */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  cursor: pointer;
  font-size: 24px;
}

/* WALLET ITEMS */
.wallet-list {
  margin-top: 20px;
}

.wallet-item {
  padding: 15px;
  background: #1e1e1e;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.wallet-item:hover {
  background: #2a2a2a;
}

.tag {
  background: green;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* INPUT */
.input-box {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: white;
}

/* GOOGLE BUTTON */
.google-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: white;
  color: black;
  cursor: pointer;
}






/* HERO */

.hero{
height:90vh;
display:flex;
align-items:center;
padding:80px;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
url('../assets/images/hero.jpg');

background-size:cover;
background-position:center;
}

.hero-content{
max-width:650px;
}

.hero h1{
font-size:64px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:20px;
color:#ccc;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#d4af37;
color:#111;
font-weight:bold;
border-radius:10px;
text-decoration:none;
}

/* FEATURED */

.featured{
padding:100px 70px;
text-align:center;
}

.featured h2{
font-size:42px;
margin-bottom:60px;
color:#d4af37;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
}

.card{
background:#1a1a1a;
padding:25px;
border-radius:16px;
transition:.3s;
box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:12px;
margin-bottom:20px;
}

.card h3{
margin-bottom:10px;
}

.card p{
color:#aaa;
margin-bottom:12px;
}

.card span{
font-size:22px;
color:#d4af37;
font-weight:bold;
}

/* ABOUT */

.about{
padding:100px 70px;
background:#171717;
text-align:center;
}

.about h2{
font-size:44px;
margin-bottom:25px;
}

.about p{
color:#ccc;
max-width:700px;
margin:auto;
margin-bottom:40px;
line-height:1.8;
}

.btn-dark{
padding:15px 35px;
border:1px solid #d4af37;
color:#d4af37;
text-decoration:none;
border-radius:10px;
}

/* FOOTER */

footer{
padding:45px;
text-align:center;
background:#0b0b0b;
border-top:1px solid #222;
}

footer h3{
color:#d4af37;
margin-bottom:15px;
}

footer p{
color:#aaa;
margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
padding:25px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero{
padding:35px;
text-align:center;
}

.hero h1{
font-size:42px;
}




}