/* RESET & BASE SETUP */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color 0.4s, color 0.4s;
}

/* HEADER */
header {
  background-color: #1a1a1a;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
  position: fixed;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 600;
  color: #f2484b;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}


/* NAVIGATION */
nav {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #333;
  color: #fff;
}

/* MENU & SIDEBAR */
.menu-btn {
  background: none;
  border: none;
  color: #f2484b;
  font-size: 1.8rem;
  cursor: pointer;
  margin-right: 10px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #1a1a1a;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1500;
  border-right: 1px solid #333;
}

.sidebar.open {
  left: 0;
}

.sidebar a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  transition: color 0.3s;
}

.sidebar a:hover {
  color: #f2484b;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1400;
}

.overlay.show {
  display: block;
}

/* CATEGORY BAR */

/* MAIN CONTENT */

.post-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 8px;
}


:root {
  --radius: 12px;
  --meta-color: #aaa;
}
body.light-mode {
  --meta-color: #555;
}

/* FOOTER */
footer {
  background-color: #111;
  color: #777;
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  margin-top: auto;
  border-top: 1px solid #333;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
}

/* TITLE SECTION */
.page-title-section {
  text-align: center;
  padding: 50px 20px 30px;
}

.page-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.4s;
}

.page-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  transition: color 0.4s;
}

/* SEARCH BAR (FULL WIDTH MODERN) */

/* LIGHT MODE STYLES */
body.light-mode {
  background-color: #f4f4f7;
  color: #1f1f1f;
}

body.light-mode header,
body.light-mode footer {
  background-color: #f9f9fb;
  border-color: #ccc;
  color: #555;
}

body.light-mode .brand,
body.light-mode .theme-toggle {
  color: #f2484b;
}

/* DARK MODE STYLES */

body:not(.light-mode) .page-title,
body:not(.light-mode) .page-description {
  color: #e0e0e0;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  header {
    padding: 10px;
    flex-wrap: wrap;
  }

  .brand {
    font-size: 1.3rem;
  }
}


/* ==== GLOBAL RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.4s, color 0.4s;
}

/* ==== LIGHT/DARK MODE VARIABLES ==== */
:root {
  --bg-color: #121212;
  --text-color: #f5f5f5;
  --header-bg: #1a1a1a;
  --header-border: #333;
  --footer-bg: #111;
  --footer-text: #aaa;
  --footer-link: #ccc;
  --footer-border: #333;
  --icon-color: #f2f2f2;
  --card-bg: #1f1f1f;
}

body.light-mode {
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --header-bg: #ffffff;
  --header-border: #ddd;
  --footer-bg: #f8f8f8;
  --footer-text: #666;
  --footer-link: #444;
  --footer-border: #ccc;
  --icon-color: #1a1a1a;
   --card-bg: #ffffff;
}

/* ==== HEADER ==== */
header {
  background-color: var(--header-bg); /* Uses a CSS variable for the background */
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed; /* Fixed position to keep it always on top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--header-border);
  transition: background-color 0.4s, border-color 0.4s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for separation */
}

/* Add a top margin to body so content doesn't hide behind the fixed header */
body {
  margin-top: 60px; /* Adjust based on the height of the header */
}


.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f2484b;
  text-align: center;
  flex: 1;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--icon-color);
  cursor: pointer;
  transition: color 0.3s;
}

.theme-toggle:hover {
  color: #f2484b;
}

/* ==== MAIN CONTENT ==== */

/* ==== POST STYLING ==== */
.post {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: background-color 0.4s, border 0.4s;
}

body.light-mode .post {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.post h2 {
  color: #f2484b;
  margin-bottom: 10px;
}

.post p {
  line-height: 1.6;
  color: var(--text-color);
}

/* ==== FOOTER ==== */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  margin-top: auto;
  border-top: 1px solid var(--footer-border);
  transition: background-color 0.4s, color 0.4s;
}

footer a {
  color: var(--footer-link);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s;
}

footer a:hover {
  color: #f2484b;
}

/* ==== MEDIA QUERIES ==== */
@media (max-width: 768px) {
  .brand {
    font-size: 1.3rem;
  }

  .post {
    padding: 15px;
  }

  footer {
    padding: 20px 15px;
  }
}


/* Root Theme Logic */
body {
  background: #121212;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}
body.light-mode {
  background: #f5f5f5;
  color: #111;
}

/* Root Theme Logic */
body {
  background: #121212;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}
body.light-mode {
  background: #f5f5f5;
  color: #111;
}

/* Post Grid */
.posts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}



.post-card {
  background: linear-gradient(135deg, #1e1e2f, #2e2e3e); /* Dark gradient background */
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.post-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

body.light-mode .post-card {
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  color: #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.post-card:hover {
  transform: rotateY(10deg) rotateX(10deg);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}


/* Views Badge */
.post-views {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
body.light-mode .post-views {
  background: rgba(255, 255, 255, 0.6);
  color: #222;
}
.icon-eye {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* Content Section */
.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Title */
.post-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

/* See the Leak Button */
.see-leak-btn {
  text-align: center;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease all;
  box-shadow: 0 4px 12px rgba(255, 75, 43, 0.3);
  align-self: center;
}
.see-leak-btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  box-shadow: 0 6px 16px rgba(255, 65, 108, 0.5);
}
body.light-mode .see-leak-btn {
  background: linear-gradient(45deg, #4b6cb7, #182848);
  color: #fff;
}
body.light-mode .see-leak-btn:hover {
  background: linear-gradient(45deg, #182848, #4b6cb7);
}

.see-more-button {
  display: block;
  margin: 30px auto;
  padding: 14px 28px;
  font-size: 1.2rem;
  border: none;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.see-more-button:hover {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 65, 108, 0.4);
}



/* ==== Scroll to Top Button ==== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px; /* Distance from bottom of the page */
  right: 30px; /* Distance from the right of the page */
  background-color: #007bff; /* Button color */
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  padding: 15px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000; /* Ensures button is above other content */
}

.scroll-top-btn:hover {
  background-color: #0056b3; /* Darker color on hover */
  transform: scale(1.1); /* Slight scale effect for interaction */
}

.scroll-top-btn:focus {
  outline: none; /* Remove default focus outline */
}

/* Smooth scrolling effect for the entire page */
html {
  scroll-behavior: smooth;
}

/* FORM STYLES */

.hot-picks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 40px auto 20px;
  color: #fff;
}

.hot-picks-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-wrapper {
  max-width: 1200px; /* same max-width as posts container */
  margin: 40px auto 60px auto; /* space above and below, center horizontally */
  text-align: center; /* center the button inside */
  padding: 0 20px; /* some side padding for smaller screens */
}

.see-all-btn {
  display: inline-block;
  padding: 14px 48px;       /* increase horizontal padding for width */
  border-radius: 28px;      /* slightly bigger rounding for bigger size */
  background: linear-gradient(135deg, #4b1e6d, #9c27b0);
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(156, 39, 176, 0.45);
  width: 320px;             /* wider fixed width */
  text-align: center;
}


.see-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  z-index: 1;
}

.see-all-btn:hover::before {
  left: 100%;
}

.see-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(156, 39, 176, 0.5);
  z-index: 2;
}


/* --- SEARCH BAR: Modern, Responsive, and Focused --- */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 2.5rem auto 2rem auto;
  padding: 0 8px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(31,41,55,0.95);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  border: 1.5px solid #222;
  transition: box-shadow 0.2s, border 0.2s;
  gap: 10px;
}

.search-bar:focus-within {
  box-shadow: 0 4px 24px rgba(242,72,75,0.18);
  border: 1.5px solid #f2484b;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 8px 0;
  letter-spacing: 0.01em;
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  display: flex;
  align-items: center;
}

.search-bar .icon, .search-bar svg {
  width: 26px;
  height: 26px;
  color: #60a5fa;
  transition: color 0.2s;
}

.search-bar input::placeholder {
  color: #bdbdbd;
  opacity: 1;
  font-size: 1rem;
}

body.light-mode .search-bar {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
body.light-mode .search-bar:focus-within {
  border: 1.5px solid #f2484b;
  box-shadow: 0 4px 24px rgba(242,72,75,0.09);
}
body.light-mode .search-bar input {
  color: #222;
}
body.light-mode .search-bar .icon, 
body.light-mode .search-bar svg {
  color: #4b6cb7;
}

/* Search Results Dropdown */
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #18181b;
  border-radius: 16px;
  border: 1.5px solid #232323;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  max-height: 420px;
  overflow-y: auto;
  z-index: 999;
  animation: fadeIn 0.18s ease-in;
  font-size: 1rem;
}
.search-results.active {
  display: block;
}
.search-results a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  text-decoration: none;
  color: #f9fafb;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.18s;
}
.search-results a:hover {
  background: #23232b;
}
.search-results .result-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  background: #2e2e2e;
  flex-shrink: 0;
}
.search-results .result-title {
  font-weight: 600;
  font-size: 1.07rem;
  color: #fff;
}
.search-results .result-category {
  font-size: 0.92rem;
  font-weight: 500;
  color: #a0a0a0;
}
body.light-mode .search-results {
  background: #fff;
  border-color: #e0e0e0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
body.light-mode .search-results a {
  color: #23232b;
}
body.light-mode .search-results a:hover {
  background: #f3f4f6;
}
body.light-mode .search-results .result-title {
  color: #23232b;
}
body.light-mode .search-results .result-category {
  color: #555;
}
body.light-mode .search-results .result-img {
  background: #e5e7eb;
}

/* Responsive Search Bar */
@media (max-width: 700px) {
  .search-wrapper {
    max-width: 100%;
    padding: 0 2px;
  }
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 8px;
    gap: 6px;
  }
  .search-bar input {
    font-size: 1rem;
    padding: 8px 2px;
  }
  .search-bar .icon, .search-bar svg {
    width: 22px;
    height: 22px;
  }
  .search-results {
    left: 0;
    width: 100vw;
    min-width: unset;
    border-radius: 0 0 14px 14px;
    max-height: 60vh;
    font-size: 0.98rem;
  }
  .search-results a {
    padding: 10px 10px;
    gap: 10px;
  }
  .search-results .result-img {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }
}

/* --- POSTS GRID: Modern, Responsive, Clean --- */
.posts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  padding: 36px 10px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  width: 100%;
  transition: gap 0.2s, padding 0.2s;
}

@media (max-width: 1200px) {
  .posts-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 24px 4px;
  }
}
@media (max-width: 900px) {
  .posts-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    padding: 14px 2px;
  }
}
@media (max-width: 700px) {
  .posts-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 8px 0;
  }
}

/* --- POST IMAGE: Consistent Aspect Ratio, Responsive --- */
.post-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-bottom: 1.5px solid #23232b;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  min-height: 170px;
  max-height: 260px;
  object-fit: cover;
  transition: max-height 0.2s;
}
/* --- LARGER POST IMAGES ON ALL DEVICES --- */
.post-image {
  min-height: 260px !important;
  max-height: 360px !important;
  height: 260px !important;
}

@media (max-width: 900px) {
  .post-image {
    min-height: 200px !important;
    max-height: 260px !important;
    height: 205px !important;
  }
}
@media (max-width: 600px) {
  .post-image {
    min-height: 170px !important;
    max-height: 260px !important;
    height: 195px !important;
  }
}

/* --- CARD CONTENT --- */
.content {
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}
@media (max-width: 700px) {
  .content {
    padding: 14px 10px 14px 10px;
    gap: 8px;
  }
}

/* --- CARD TITLE --- */
.post-title {
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #f2484b;
  line-height: 1.25;
  word-break: break-word;
  letter-spacing: 0.01em;
}
body.light-mode .post-title {
  color: #4b6cb7;
}

/* --- CARD DESCRIPTION --- */
.post-desc {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
  word-break: break-word;
  text-align: center;
}
body.light-mode .post-desc {
  color: #444;
}

/* --- VIEWS BADGE --- */
.post-views {
  position: absolute;
  top: 13px;
  right: 13px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
body.light-mode .post-views {
  background: rgba(255,255,255,0.7);
  color: #222;
}
.icon-eye {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

/* --- SEE LEAK BUTTON --- */
.see-leak-btn {
  text-align: center;
  padding: 11px 22px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border-radius: 40px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 2px 10px rgba(255,75,43,0.18);
  align-self: center;
  margin-top: 10px;
  border: none;
}
.see-leak-btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  box-shadow: 0 4px 16px rgba(255,65,108,0.22);
}
body.light-mode .see-leak-btn {
  background: linear-gradient(45deg, #4b6cb7, #182848);
  color: #fff;
}
body.light-mode .see-leak-btn:hover {
  background: linear-gradient(45deg, #182848, #4b6cb7);
}

/* --- MOBILE CARD IMPROVEMENTS --- */
@media (max-width: 700px) {
  .post-card {
    border-radius: 12px;
    min-width: 0;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    border: 1.5px solid #23232b;
    background: #23232b;
  }
  body.light-mode .post-card {
    background: #f8f8fa;
    border: 1.5px solid #e0e0e0;
  }
}

/* --- EXTRA: Add subtle hover effect for mobile tap --- */
@media (hover: none) and (pointer: coarse) {
  .post-card:active {
    box-shadow: 0 2px 8px rgba(242,72,75,0.18);
    border-color: #f2484b;
  }
}
body.light-mode .post-card:active {
  box-shadow: 0 2px 8px rgba(75,108,183,0.18);
  border-color: #4b6cb7;
}

/* --- IMPROVED GAP BETWEEN POST GRIDS --- */
.posts-container {
  gap: 40px !important; /* Larger gap between cards */
}



/* 2 columns for main.html only */
.posts-container-2col {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 900px) {
  .posts-container-2col {
    grid-template-columns: 1fr !important;
  }
}

.posts-container,
.posts-container-2col {
  padding-left: 24px !important;
  padding-right: 24px !important;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  width: 100%;
  gap: 40px !important;
}

@media (max-width: 900px) {
  .posts-container,
  .posts-container-2col {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .posts-container,
  .posts-container-2col {
    padding-left: 6% !important;
    padding-right: 6% !important;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}




/* Responsive and Fast */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #fff;
}

.disclaimer-box {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.disclaimer-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.disclaimer-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.disclaimer-buttons button,
.telegram-btn {
  padding: 10px 20px;
  background: #00bfff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.telegram-btn:hover,
.disclaimer-buttons button:hover {
  background: #009ac2;
}



.error-page {
  text-align: center;
  margin: 100px auto;
  font-family: 'Inter', sans-serif;
}

.error-page p {
  font-size: 1.2rem;
  color: gray;
}

/* VIP Card Styles */
.vip-wrapper {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.vip-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-decoration: underline;
}

.vip-card {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.vip-card-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.vip-card-right {
  padding: 30px 25px;
}

.vip-card-right h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.vip-card-right h3 span {
  font-size: 1rem;
  color: #ccc;
  font-weight: 400;
}

.vip-card-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.vip-card-right ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  padding-left: 5px;
}

.vip-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #e50914;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
}

.vip-btn:hover {
  background: #bf0811;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .vip-card {
    flex-direction: row;
  }

  .vip-card-left {
    flex: 1;
    max-width: 40%;
  }

  .vip-card-right {
    flex: 2;
  }

  .vip-card-left img {
    height: 100%;
    object-fit: cover;
  }
}
