@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0f0f1a;
  --bg-secondary: #1a1a2e;
  --bg-card: #16213e;
  --accent: #e94560;
  --accent-hover: #ff5b77;
  --text-main: #ffffff;
  --text-muted: #a0a0b0;
  --star-color: #ffd700;
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 75px;
  /* Offset for fixed navbar */
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================== AD UNITS ================== */
.ad-unit {
  max-width: 100%;
  overflow: hidden;
  margin: 1.5rem auto;
  text-align: center;
}

.adsbygoogle {
  display: block;
  max-width: 100%;
  overflow: hidden;
}

/* ================== CONTAINER ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}

/* ================== NAVIGATION ================== */
.navbar {
  background-color: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease;
}

.navbar--hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(233, 69, 96, 0.3);
}

.site-logo svg {
  width: 55px;
  height: 55px;
  padding-top: 10px;
  vertical-align: middle;
}

.site-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================== HERO SECTION ================== */
.hero {
  background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?auto=format&fit=crop&q=80&w=2000') center/cover;
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--bg-secondary);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  border: none;
  background-color: var(--bg-card);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-main);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: rgba(233, 69, 96, 0.1);
  transform: translateY(-2px);
}

/* ================== MAIN CONTENT ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll on iOS */
  padding-bottom: 5px;
  /* Slight padding for smooth scrolling */

  /* Hide scrollbar for cleaner look */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.filters::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.filter-btn {
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  /* Prevent text wrapping */
  flex-shrink: 0;
  /* Prevent button shrinking on small screens */
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
  color: var(--text-main);
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.game-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}

.game-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid var(--bg-secondary);
}

.game-card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.game-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
}

.game-rating {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.game-rating span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.play-btn {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding: 0.6rem;
  border-radius: 5px;
  background-color: rgba(233, 69, 96, 0.1);
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.play-btn:hover {
  background-color: var(--accent);
  color: var(--text-main);
}

.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--text-main);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.fav-btn:hover {
  color: var(--accent);
}

.fav-btn.active {
  color: var(--accent);
}

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent);
  color: white;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

/* Horizontal Scroll for New Games */
.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-secondary);
}

.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 4px;
}

.horizontal-scroll .game-card {
  min-width: 250px;
  flex: 0 0 auto;
}

/* ADSENSE PLACEHOLDERS */
.ad-unit {
  min-height: 90px;
  background: rgba(255, 255, 255, 0.05);
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  text-align: center;
  width: 100%;
}

.ad-sidebar {
  min-height: 250px;
}

/* FOOTER */
footer {
  background-color: var(--bg-secondary);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-links h3 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  border-top: 1px solid var(--accent);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background-color: var(--accent-hover);
}

/* Responsive */
@media (max-width: 992px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-secondary);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .game-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }
}

/* Game Page Specific */
.game-header-area {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.game-thumb-large {
  width: 200px;
  height: 200px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.game-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.game-details-table {
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
  border-collapse: collapse;
}

.game-details-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-details-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.game-embed-container {
  position: relative;
  background-color: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
}

#game-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fullscreen-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 11;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fullscreen-btn:hover {
  background: var(--accent);
}

.content-section {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.content-section p {
  margin-bottom: 1rem;
  color: #d0d0e0;
}

.content-section ul,
.content-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #d0d0e0;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Screenshots */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.screenshot-img {
  width: 100%;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.screenshot-img:hover {
  transform: scale(1.05);
}

/* Comments */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.comment-form input,
.comment-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  color: white;
  font-family: 'Poppins', sans-serif;
}

.comment-form input:focus,
.comment-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
}

.comment-author {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.comment-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

/* Blog Page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.blog-img {
  width: 40%;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
  /* Align it neatly */
  display: block;
  /* Align it neatly */
}

/* Make individual blog post images smaller and centered like a personal blog */
.page-content img {
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-tag {
  color: var(--accent);
  font-weight: 600;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: #d0d0d0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  color: var(--text-main);
  gap: 8px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .game-header-area {
    flex-direction: column;
  }

  .game-thumb-large {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
}

/* Simple Pages (About, Terms, etc) */
.page-header {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--accent);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.page-content p {
  margin-bottom: 1.2rem;
  color: #c0c0d0;
}

.page-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #c0c0d0;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 26, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(233, 69, 96, 0.3);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  min-height: 48px;
  /* Google's recommended touch target */
  min-width: 120px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  /* Prevent double-tap zoom on mobile */
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  /* Compact hero section */
  .hero {
    padding: 2rem 1.2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .search-bar {
    margin: 0 auto 1rem;
  }

  .search-bar input {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero-btns {
    gap: 0.6rem;
  }

  .hero-btns .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Tighter content containers */
  .container {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  /* Navigation compact */
  .nav-container {
    padding: 0.7rem 1rem;
  }

  .site-logo {
    font-size: 1.4rem;
  }

  /* Game grid: 2 columns on mobile */
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.5rem;
    gap: 1rem;
  }

  .cookie-banner .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }
}