:root {
  --black: #0b0b0b;
  --dark: #141414;
  --gold: #c9a86a;
  --gray: #9aa0a6;
  --blue: #1da1f2;
  --blue-highlight: #00bffe;
}

/* ===== 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: rgba(8, 8, 12, 0.72);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.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 are in dropdown.css */

/* MAIN CONTENT */
.container {
  max-width: 2200px;
  margin: 60px auto;
  padding: 0 24px;
}

.updates {
  display: grid;
  grid-template-columns: 1fr 3.5fr 1fr;
  gap: 28px;
  align-items: start;
}

.card {
  background: rgba(15, 15, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 16px;
  min-height: 220px;
  color: #ddd;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04), inset 0 -1px 0 rgba(212,175,55,0.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: -1;
}

.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(15, 15, 20, 0.55);
     border: 1px solid rgba(212, 175, 55, 0.1);
     border-radius: 16px;
     padding: 8px;
     text-align: center;
     backdrop-filter: blur(24px) saturate(180%);
     -webkit-backdrop-filter: blur(24px) saturate(180%);
     box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     margin-bottom: 20px;
     position: relative;
     overflow: hidden;
   }
.fixed-box a {
     display: flex;
     width: 100%;
     max-width: 340px;
     height: auto;
     aspect-ratio: 340 / 280;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
   }
.fixed-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 10px;
     transition: transform 0.3s ease, filter 0.3s ease;
   }
.fixed-box:hover img {
     transform: scale(1.03);
     filter: brightness(1.08);
   }
.fixed-box p {
     font-size: 13px;
     color: var(--gray);
     margin-top: 6px;
   }
    
.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(15, 15, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: #ddd;
  padding: 12px 30px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.03);
}

.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(15, 15, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04), inset 0 -1px 0 rgba(212,175,55,0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: -1;
}

.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: rgba(12, 12, 18, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  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: linear-gradient(180deg, rgba(11,11,11,0.95), rgba(8,8,12,0.98));
  color: #ddd;
  padding: 50px 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.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  {
  text-align: center;
  padding: 40px;
  background: rgba(15, 15, 20, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-top: 2px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: -1;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  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, filter 0.3s;
  width: 100px;
  padding: 14px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.06);
}
.social-item:hover {
  transform: translateY(-5px);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.15);
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.15));
}

.social-item img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 5px rgba(201,168,106,0.2));
}



/* 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: 20px;
  font-size: 20px;
}
.footer-links strong {
  color: var(--gold);
}

.policy {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.7;
  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;
}

/* ── Ad Box Styles ── */

/* Banner inside donate-card — responsive, no overflow */
.donate-card .ad-banner-left {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 420 / 80;
}

/* Wide/banner ad — fixed container, image fits inside */
.ad-banner-left {
  width: 420px;
  height: 80px;
  background: rgba(15, 15, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 6px;
  text-align: center;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ad-banner-left a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ad-banner-left img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.ad-banner-left:hover {
  border-color: rgba(212, 175, 55, 0.2);
}
.ad-banner-left:hover img {
  transform: scale(1.02);
}

/* ── Mobile Hamburger Button ── */
.ankh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 10001;
}
.ankh-hamburger:hover {
  background: rgba(255,255,255,0.06);
}
.ankh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #eee;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.ankh-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ankh-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.ankh-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.ankh-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.ankh-mobile-overlay.show {
  opacity: 1;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  .updates {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Show hamburger button */
  .ankh-hamburger {
    display: flex;
  }

  /* Nav becomes a slide-in mobile menu */
  nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-left: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 30px;
    gap: 4px;
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  nav.ankh-mobile-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .ankh-mobile-overlay.show {
    display: block;
  }

  nav a {
    font-size: 16px;
    padding: 12px 14px;
    width: 100%;
    border-radius: 8px;
  }
  nav a:hover {
    background: rgba(212,175,55,0.08);
  }

  /* Override dropdown position for mobile */
  .dropdown {
    width: 100%;
  }
  .dropdown-toggle {
    width: 100%;
    padding: 12px 14px;
  }

  /* Ad boxes scale down on mobile */
  .ad-banner-left {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 420 / 80;
    margin: 15px auto;
  }
  .fixed-box {
    min-height: auto;
    order: 2;
    width: 100%;
    max-width: 340px;
    margin: 15px auto;
  }
  .fixed-box a {
    max-width: 340px;
    aspect-ratio: 340 / 280;
  }

  .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;
  }
}