/* =========================
   RESET + BASE
========================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:linear-gradient(180deg,#332C24,#000,#332C24);
color:#f5e4cb;
scroll-behavior:smooth;
}

/* =========================
   NAVBAR
========================= */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 18px;
background:#332C24;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid #684B35;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

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

.nav-links{
display:flex;
gap:15px;
list-style:none;
}

.nav-links a{
color:#f5e4cb;
text-decoration:none;
transition:0.3s;
}

.nav-links a:hover{
color:#816644;
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#f5e4cb;
}
.nav-links.active{
display:flex;
}

/* =========================
   HOME
========================= */
.home{
text-align:center;
padding:90px 20px;
background:radial-gradient(circle,#684B35,#332C24);
}
.title{
font-family:'Orbitron', sans-serif;
font-size:42px;
color:#000000;
-webkit-text-stroke:2px #f5e4cb;
text-shadow:2px 1px 2px #f5e4cb;
}
/* =========================
   SECTION
========================= */
section{
padding:50px 20px;
}

/* =========================
   DROPDOWN
========================= */
.dropdown-section{
width:100%;
max-width:600px;
margin:auto;
}

/* Full width button */
.drop-btn.full{
width:100%;
display:block;
}

/* Row for 3 buttons */
.row{
display:flex;
gap:10px;
margin-top:10px;
}

/* 3 equal buttons */
.row .drop-btn{
flex:1;
}

/* your original style */
.drop-btn{
background:#332C24;
border:1px solid #684B35;
color:#f5e4cb;
padding:10px 15px;
margin:5px 0;
cursor:pointer;
border-radius:8px;
transition:0.3s;
font-weight:bold;
}

.drop-btn:hover{
background:#684B35;
color:white;
}

/* dropdown content */
.drop{
display:none !important;
padding:10px;
background:rgba(255,255,255,0.05);
margin:5px 0 10px 0;
border-radius:8px;
}

.drop{
display:none		;
padding:12px;
margin-top:5px;
background:rgba(200,185,161,0.08);
border-left:3px solid #816644;
}
/* =========================
   TABLE
========================= */
table{
width:100%;
border-collapse:collapse;
margin-top:20px;
table-layout:fixed;
}

/* সব cell */
table, th, td{
border:1px solid black !important;
}

/* text center */
th, td{
text-align:center;
padding:8px;
word-wrap:break-word;
white-space:normal;
font-size:14px;
}

/* 🔥 COLUMN WIDTH CONTROL */

/* Rank ছোট */
th:nth-child(1),
td:nth-child(1){
width:10%;
}

/* Name বড় */
th:nth-child(2),
td:nth-child(2){
width:30%;
font-weight:bold;
}

/* Played */
th:nth-child(3),
td:nth-child(3){
width:12%;
}

/* Total */
th:nth-child(4),
td:nth-child(4){
width:15%;
}

/* Avg */
th:nth-child(5),
td:nth-child(5){
width:14%;
}

/* Details ছোট */
th:nth-child(6),
td:nth-child(6){
width:10%;
}

/* header */
th{
font-weight:bold;
color:#f5e4cb;
background:#332C24;
font-size:11px; /* 🔥 একটু readable */
}

/* hover */
table tr:hover{
background:rgba(129,102,68,0.2);
transition:0.3s;
}

/* govt vs opp */
.gov{
color:#f5e4cb;
font-weight:bold;
}

.opp{
color:#f5e4cb;
font-weight:bold;
}

/* win */
.win{
color:#f5e4cb;
font-weight:bold;
}

/* avg */
.avg{
color:#00aaff;
font-weight:bold;
}
/* =========================
   ADJ Card
========================= */
.adj-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* Mobile */
@media (max-width:768px){
  .adj-grid{
    grid-template-columns:1fr;
  }
}

.adj-card{
  background:#1b1b1b;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:15px;
  text-align:center;
  transition:0.3s ease;
  box-shadow:0 0 15px rgba(0,0,0,0.4);
}

.adj-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(169,113,66,0.5);
}

.adj-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:15px;
}

.adj-name{
  color:#fff;
  font-size:18px;
  margin-top:12px;
  font-weight:600;
}
/* ======================
   RESPONSIVE
====================== */

/* Tablet */
@media(max-width:992px){
.cards{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media(max-width:600px){
.cards{
grid-template-columns:1fr;
}
}
/* =========================
   FOOTER
========================= */
footer{
text-align:center;
padding:20px;
background:#332C24;
border-top:1px solid #684B35;
margin-top:30px;
color:#f5e4cb;
}

/* =========================
   ROUND TITLE
========================= */
section h2{
text-align:center;
font-weight:bold;
margin:20px 0;
color:#f5e4cb;
}

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

.menu-toggle{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:60px;
right:0;
background:#332C24;
width:200px;
padding:10px;
}

.nav-links.active{
display:flex !important;
}
}
/* =========================
   HERO PERFECT ALIGN FIX
========================= */
.hero{
width:100%;
height:auto; /* 🔥 height remove */
display:block;
margin:0;
padding:0;
}

/* 🔥 FIXED BACKGROUND */
body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:url("https://i.postimg.cc/Kjq6qNh9/Background.png") no-repeat center center/cover;

filter:blur(6px) brightness(0.5);
z-index:-1;
}

/* 🔥 COVER IMAGE */
/* cover image */
.cover-img{
width:100%;
display:block;
}

/* 🔥 fade BELOW image */
.cover-bottom-fade{
width:100%;
height:120px;

/* fade from image → page bg */
background:linear-gradient(from bottom,
rgba(0,0,0,0) 0%,
rgba(0,0,0,0.7) 60%,
#000 100%);

/* একটু overlap দিলে smooth হয় */
margin-top:-5px;
}
/* 🔥 button */
.prep-btn{
  background: linear-gradient(135deg, #8B5E3C, #A97142);
  color: white;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 30px;
  border: none;
	 margin-top:50px;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  
  box-shadow: 0 0 10px #A97142,
              0 0 20px #8B5E3C,
              0 0 30px rgba(169,113,66,0.6);

  transition: 0.3s ease;
}

/* hover glow stronger */
.prep-btn:hover{
  transform: translateY(1px);
  box-shadow: 0 0 6px #A97142,
              0 0 12px rgba(169,113,66,0.6);
}

/* click effect */
.prep-btn:active{
  transform: scale(0.96);
}
.center{
text-align:center;
}



❗❗❗❗❗❗❗❗❗❗❗❗❗❗❗❗❗❗
.hidden{
display:none !important;
}
/* =========================
   search box speaker
========================= */
.search-box{
width:300px;
padding:10px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #ccc;
font-size:16px;
outline:none;
}

.search-box:focus{
border-color:#4CAF50;
box-shadow:0 0 5px rgba(76,175,80,0.5);
}
/* =========================
   footer
========================= */
/* Container Layout and Theme Setup */
.developer-footer {
  background-color: #1F1A17; /* Dark Chocolate Background */
  color: #F5F1EC; /* Soft chocolate white */
  padding: 1.25rem 2rem;
  border-top: 1px solid #3a2f29;
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-credit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Developer Profile */
.dev-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c9b8a7; /* Light chocolate ring */
}

.dev-info {
  display: flex;
  flex-direction: column;
}

.dev-title {
  font-size: 0.75rem;
  color: #E8DED4; /* chocolate white */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dev-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #F5F1EC;
}

/* Copyright Text */
.footer-copyright p {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
  color: #E8DED4;
}

/* Social Links */
.dev-social-links {
  display: flex;
  gap: 1.25rem;
}

.dev-link {
  color: #F5F1EC;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.dev-link:hover {
  color: #d6c6b6; /* hover chocolate glow */
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-credit-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 1.2rem;
  }

  .dev-profile {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dev-social-links {
    justify-content: center;
  }
}
.dev-social-links{
  display:flex;
  gap:12px;
}

.dev-link{
  text-decoration:none;
  padding:8px 14px;
  border-radius:8px;
  color:white;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
}

.web-link{
  background:#444;
}

.fb-link{
  background:#1877f2;
}

.dev-link:hover{
  opacity:0.8;
}