:root {
  --black: #0b0b0b;
  --dark: #141414;
  --gold: #c9a86a;
  --gray: #9aa0a6;
  --blue: #1da1f2;
}

/* ===== Global Scrollbar Styling ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a; /* deep black */
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #1a1a1a 0%,
        #3a2a00 25%,
        #d4af37 50%,
        #b8860b 75%,
        #1a1a1a 100%
    );
    border-radius: 10px;
    border: 2px solid #0a0a0a;
    box-shadow: 
        0 0 10px rgba(212, 175, 55, 0.6),
        inset 0 0 5px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #2a2a2a 0%,
        #ffd700 50%,
        #b8860b 100%
    );
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.9),
        inset 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #0a0a0a;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: #eee;
  font-family: "Inter", system-ui, sans-serif;
  background-image: url('src/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #0b0b0b;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px);
  z-index: -1; 
}

/* NAVBAR */
header {
  background: var(--black);
  border-bottom: 1px solid #222;
  
  /* These lines fix it to the top */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Ensures it stays on top of everything */
}

.nav {
  max-width: 2200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin-right: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: #eee;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a.active {
  border: 1px solid #eee;
  padding: 6px 14px;
  border-radius: 6px;
}

/* DROPDOWN STYLES */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  display: inline-block;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a86a;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a1a1a, #0b0b0b);
  width: 900px;
  max-width: 90vw;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  border-top: 3px solid #c9a86a;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  padding: 25px;
  animation: fadeIn 0.3s ease;
  overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.dropdown-column {
  padding: 0 10px;
  position: relative;
}

.dropdown-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #333, transparent);
}

.dropdown-section {
  margin-bottom: 25px;
}

.dropdown-section h4 {
  color: #c9a86a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-section a {
  display: block;
  color: #ddd;
  text-decoration: none;
  font-size: 13px;
  padding: 7px 0;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 12px;
  border-radius: 3px;
}

.dropdown-section a:hover {
  color: #c9a86a;
  background: rgba(201, 168, 106, 0.1);
  transform: translateX(3px);
  padding-left: 15px;
}

.dropdown-section a::before {
  content: '→';
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: all 0.2s ease;
  color: #c9a86a;
}

.dropdown-section a:hover::before {
  left: 5px;
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown:hover .dropdown-toggle,
.dropdown.active .dropdown-toggle {
  color: #c9a86a;
}

/* MAIN CONTENT */
.container {
  max-width: 2200px;
  margin: 60px auto;
  padding: 0 24px;
}

.updates {
  display: grid;
  grid-template-columns: 3fr 8fr 3fr;
  gap: 30px;
  align-items: start;
}

.card {
  background: rgba(20, 20, 20, 0.6); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  padding: 20px;
  border-radius: 10px;
  min-height: 220px;
  color: #ddd; 
  backdrop-filter: blur(10px);
}

.updates h2 {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 85px;
  font-size: 26px;
}

.news p {
  margin-bottom: 10px;
  font-size: 15px;
}

.news a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  font-weight: 600;
  color: #666;
}

.fixed-box {
     background: rgba(20, 20, 20, 0.6);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     padding: 10px;
     text-align: center;
     backdrop-filter: blur(10px);
     min-height: 100px; /* Gives the box shape even when empty */
     display: flex;
     flex-direction: column;
     justify-content: center;
     margin-bottom: 20px;
   }
    
.fixed-box span {
      font-size: 10px;
      color: var(--gray);
      margin-bottom: 5px;
      display: block;
  }

/* PRODUCT SHOWCASE WITH TABS */
.product-showcase {
  margin: 80px 0;
}

.showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.showcase-header h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), #f4e4c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.showcase-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(201, 168, 106, 0.3);
  color: #ddd;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(201, 168, 106, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-icon {
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Tab Image Styles */
.tab-image {
  width: 170px !important;
  height: 220px !important;
  transition: all 0.3s ease;
  filter: brightness(0.95);
}

.product-card a {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
  text-decoration: none;
}

.product-card a:hover {
  color: #90784c;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
}

.product-card ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.product-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.product-card .requirements {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}

/* DONATION */
.donation {
  width: 99.6vw;
  margin: 80px calc(50% - 50vw);
  
  padding: 70px 20px;
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #fff;
  text-align: center;
  border-radius: 0;
}

.donation h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.donation p {
  max-width: 700px;
  margin: auto;
  color: #ccc;
  line-height: 1.6;
}

.donation-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111;
  padding: 16px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

.btn.kofi {
  background: #29abe0;
  color: #fff;
}

/* DELUXE HERO SECTION */
.hero-deluxe {
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
}

.hero-deluxe h1 {
  font-size: 4rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--gold), #f4e4c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-style: italic;
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(201, 168, 106, 0.2);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 168, 106, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* HORIZONTAL FEATURE ROWS */
.horizontal-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 50px !important;
  min-height: 400px;
}

.feature-row.reversed {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(201, 168, 106, 0.2);
  transition: transform 0.5s ease;
}

.feature-row:hover .feature-visual img {
  transform: scale(1.03);
}

.category {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.feature-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.feature-text p {
  color: #ccc;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.learn-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: padding-left 0.3s ease;
}

.learn-more:hover {
  padding-left: 10px;
}

/* ABOUT SECTION */
.about-section {
  margin-top: 80px;
  padding: 60px !important;
  text-align: center;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
}

.quote-box p {
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 20px;
}

.owner-name {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: var(--black);
  color: #ddd;
  padding: 50px 24px;
  margin-top: 80px;
}

.footer-grid {
  max-width: 2200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
}

.socials i {
  margin-right: 14px;
  font-size: 30px;
  cursor: pointer;
}

.contact-area  {
  margin-top: -200px;
  text-align: center;
  padding: 40px;
  border-top: 2px solid var(--gold);
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 300px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-item {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
  width: 100px;
}

.social-item img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 5px rgba(201,168,106,0.2));
}

.social-item:hover {
  transform: translateY(-5px);
  color: var(--gold);
}

/* UI ELEMENTS */
.tab-link {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  padding: 18px;
  text-align: left;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.tab-link.active {
  background: var(--gold);
  color: #000;
  font-weight: bold;
}

.gold-gradient-text {
  background: linear-gradient(to right, #c9a86a, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.socials p {
  margin-right: 14px;
  font-size: 30px;
  cursor: pointer;
}

.footer-links a {
  display: block;
  color: #9aa0a6;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links p {
  margin-top: 80px;
  font-size: 27px;
}

.policy {
  margin-top: 110px;
  font-size: 18px;
  line-height: 1.6;
  color: #aaa;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  color: #777;
}

.requestlink {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
}

.requestlink:hover {
  color: #90784c;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  .updates {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  nav {
    display: none;
  }
  
  .hero-deluxe h1 { 
    font-size: 2.5rem; 
    letter-spacing: 3px;
  }
  
  .feature-row, .feature-row.reversed {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px !important;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-nav {
    gap: 10px;
  }
  
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .showcase-header h2 {
    font-size: 2rem;
  }
}