:root {
  --primary: #ff2a85;
  --primary-glow: rgba(255, 42, 133, 0.4);
  --secondary: #7000ff;
  --secondary-glow: rgba(112, 0, 255, 0.4);
  --accent: #00f0ff;
  --accent-glow: rgba(0, 240, 255, 0.4);
  --bg-dark: #090514;
  --bg-surface: #160b2d;
  --bg-surface-elevated: #231244;
  --text-primary: #ffffff;
  --text-secondary: #b3a7d2;
  --text-muted: #746893;
  --border-glow: rgba(255, 42, 133, 0.15);
  --border-soft: rgba(255, 255, 255, 0.08);
  --font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --max-width: 1400px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
  border: 2px solid var(--bg-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Core Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* MANDATORY DISCLAIMER BAR */
.disclaimer-bar {
  background: linear-gradient(90deg, #ff2a85 0%, #7000ff 100%);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1001;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 42, 133, 0.3);
}

/* STICKY HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 5, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.btn-outline:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  right: 0;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 120px 0 80px 0;
  background: radial-gradient(circle at 80% 20%, var(--secondary-glow) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, var(--primary-glow) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  background: rgba(255, 42, 133, 0.15);
  border: 1px solid var(--primary);
  color: #ff5ba0;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 40%, var(--primary) 70%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.floating-candy {
  width: 100%;
  max-width: 480px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--primary-glow));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* GAME INTEGRATION IFRAME */
.game-section {
  padding: 80px 0;
  background: var(--bg-surface);
  position: relative;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 4px solid var(--bg-surface-elevated);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 42, 133, 0.2);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* GRID SYSTEMS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* PREMIUM CARDS */
.feature-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(255, 42, 133, 0.15);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 42, 133, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* STATISTICS SECTION */
.stats-bar {
  background: var(--bg-surface-elevated);
  padding: 60px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--accent-glow);
}

.stat-item p {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* GAMING LOBBY GRID & DYNAMIC LABELS */
.lobby-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border-soft);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 6px 20px var(--primary-glow), 0 0 15px var(--secondary-glow);
  transform: translateY(-2px) scale(1.05);
}

.game-card {
  background: var(--bg-surface-elevated);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover {
  transform: scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 42, 133, 0.2);
}

.game-thumbnail-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #2b1652;
}

.game-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.game-card:hover .game-thumbnail {
  transform: scale(1.1);
}

.game-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-info {
  padding: 24px;
}

.game-category {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.game-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* BLOG DESIGN */
.blog-card {
  background: var(--bg-surface-elevated);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.blog-img-container {
  position: relative;
  aspect-ratio: 16/9;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.blog-title a:hover {
  color: var(--accent);
}

/* FAQ SECTION WITH ACCORDIONS */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-secondary);
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* LEGAL PAGES & RESPONSIBLE GAMING GENERAL CONTENT */
.legal-content-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  margin-top: 40px;
}

.legal-content-box h2, .legal-content-box h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content-box p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.legal-content-box ul {
  list-style: none;
  margin-bottom: 24px;
}

.legal-content-box ul li {
  margin-bottom: 12px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.legal-content-box ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* CONTACT FORM & INFO */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.contact-form-container {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.2);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, rgba(112, 0, 255, 0.2) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  text-align: center;
  margin: 80px auto;
  max-width: 900px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--bg-surface-elevated);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--border-soft);
  position: relative;
}

.testimonial-rating {
  color: #ffb800;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* MASTER FOOTER */
.master-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: rgba(22, 11, 45, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

/* DYNAMIC BLOG READER MODAL STYLING */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.blog-modal.active {
  opacity: 1;
  pointer-events: all;
}

.blog-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 5, 20, 0.85);
  backdrop-filter: blur(8px);
}

.blog-modal-container {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 42, 133, 0.15);
  padding: 48px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal.active .blog-modal-container {
  transform: translateY(0) scale(1);
}

.blog-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.blog-modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: rotate(90deg);
}

.blog-modal-close svg {
  width: 18px;
  height: 18px;
}

.blog-modal-tag {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

.blog-modal-date {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-modal-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-modal-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 24px;
}

.blog-modal-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-modal-content p {
  margin-bottom: 20px;
}

.blog-modal-content code {
  background: var(--bg-dark);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
  font-family: monospace;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .blog-modal-container {
    padding: 24px;
    margin-top: 20px;
  }
  .blog-modal-title {
    font-size: 1.6rem;
  }
}