@font-face{font-family:Claudia;src:url('./assets/Claudia.otf');}
@font-face{font-family:Retor;src:url('./assets/Retor-Bold.otf');font-weight:bold;}

body{
margin:0;
background:url('./assets/hero.webp') no-repeat center center fixed;
background-size:cover;
font-family:'Retor';
color:#fbbb20;
text-align:center;
}

#startScreen{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
background:rgba(0,0,0,0.75);
}

#startScreen h1{font-family:Claudia;font-size:48px;}

#startScreen button{
font-family:Claudia;
font-size:26px;
padding:20px 40px;
background:#fbbb20;
cursor:pointer;
transition:0.2s;
}
#startScreen button:hover{
box-shadow:0 0 20px #fbbb20;
transform:scale(1.05);
}

.overlay{
background:linear-gradient(to bottom,
rgba(0,0,0,0.75) 0%,
rgba(0,0,0,0.6) 40%,
rgba(0,0,0,0.2) 80%,
rgba(0,0,0,0.05) 100%);
min-height:100vh;

padding-top: clamp(260px, 28vh, 420px);

}

.title{
font-family:Claudia;
font-size:56px;
margin-bottom:60px;
}

.buttons{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:50px;
}

.card{
display:flex;
flex-direction:column;
align-items:center;
width:260px;
cursor:pointer;
transition:0.2s;
}

.card:hover{
transform:translateY(-10px) scale(1.05);
}

.card img{
width:200px;
margin-bottom:30px;
transition:0.2s;
}
.card:hover img{
transform:scale(1.1);
filter:drop-shadow(0 0 15px #fbbb20);
}

.label{
font-family:'Retor';
font-size:32px;
padding:18px 28px;
background:#fbbb20;
margin-bottom:15px;
}
.label:hover{
box-shadow:0 0 15px #fbbb20;
}

.desc{
font-size:20px;
text-align:center;

color:#ffffff;

background:rgba(46,38,0,0.85);
padding:12px 14px;
border-radius:8px;

text-shadow:0 2px 8px rgba(0,0,0,1);
}

#tag{
font-size:44px;
color:#f08050;
margin:20px;
background:#2e2624;
padding:10px 20px;
display:inline-block;
}

.gamertitle{
  font-family:Claudia;
  font-size:54px;
  color:#fbbb20;

  text-shadow:
    0 3px 0 #2e2624,
    0 6px 15px rgba(0,0,0,0.9);
}

.share{
background:#94cde9;
font-family:'Retor';
font-size:30px;
padding:20px 40px;
cursor:pointer;
}
.share:hover{
box-shadow:0 0 20px #94cde9;
transform:scale(1.05);
}
.retry{
background:#f08050; /* Equifruit yellow */
color:#2e2624; /* dark brown */
font-family:'Retor';
font-size:26px;
padding:18px 36px;
cursor:pointer;
border:none;
border-radius:6px;
margin-bottom:25px;

/* ✨ game feel */
transition:0.2s;
}

.retry:hover{
box-shadow:0 0 20px #fbbb20;
transform:scale(1.05);
}


.hidden{display:none;}

.share-incentive{
  font-size:40px; /* 👈 bigger */
  font-weight:bold;
  color:#fbbb20;
  margin:20px 0 10px;
  line-height:1.2;
}

.share-incentive-sub{
  font-size:16px;
  color:#fbbb20;
  margin-bottom:20px;
}

.share-box{
  padding: 25px;
  border-radius: 12px;
  display: block;
  max-width: 600px;
  margin: 20px auto;
}

.share-content{
  background: rgba(46,38,36,0.85);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


.share-instruction{
  font-size:22px; /* bigger */
  font-weight:bold; /* stronger */
  color:#ffffff;
  margin:15px 0 20px;
  padding:10px 15px;
  border-radius:8px;
  background: rgba(0,0,0,0.4); /* subtle highlight */
}

.tag-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

#tag{
  margin:0;
}

.retry{
  margin:0 0 20px;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .overlay {
    padding-top: 220px;
  }

  .title {
    font-size: 32px;
    padding: 0 20px;
  }

  .card img {
    width: 140px;
  }

  .label {
    font-size: 20px;
  }

  .desc {
    font-size: 14px;
  }

  #tag {
    font-size: 28px;
  }

  .gamertitle {
    font-size: 32px;
  }

  .share {
    font-size: 20px;
    padding: 12px 20px;
  }

  .retry{
font-size:18px;
padding:12px 20px;
  }

  .share-incentive{
  font-size:22px;
  font-weight:bold;
  color:#fbbb20;
  margin:20px 0 10px;
}

.share-incentive-sub{
  font-size:14px;
  color:#ffffff;
  margin-bottom:20px;
}

.share-instruction{
  font-size:14px;
  margin:10px 0;
}

.share-box{
  width:90%;
  padding:20px;
}


.tag-row{
  flex-direction:column;
  gap:10px;
}

}
.copy-msg{
position:fixed;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#2e2624;
color:#fff;
padding:18px 28px;
border-radius:10px;
font-size:20px;
font-weight:bold; 
z-index:9999;
opacity:0.95;
box-shadow:0 6px 20px rgba(0,0,0,0.5);
text-align:center;
max-width:90%;
}
