/* =========================
   Casino Theme (Base)
========================= */
:root{
  --bg: #07070c;
  --panel: rgba(255,255,255,0.04);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --stroke: rgba(255,255,255,0.10);

  --neon1: #7c3aed;   /* purple */
  --neon2: #22d3ee;   /* cyan */
  --neon3: #f43f5e;   /* pink/red */
}

* { box-sizing: border-box; }
body.theme-casino{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(124,58,237,0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(34,211,238,0.12), transparent 60%),
    radial-gradient(800px 500px at 50% 90%, rgba(244,63,94,0.10), transparent 60%),
    var(--bg);
  color: var(--text);
}
a{ color: inherit; text-decoration: none; }
.container{ width: min(1100px, 100%); margin: 0 auto; }

/* =========================
   Header (Sticky + Vibe)
========================= */
.site-header.is-sticky{
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(7,7,12,0.62);
  border-bottom: 1px solid var(--stroke);
}

.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
}

/* Left brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.brand-logo{
  width: 50px;
  height: 55px;
  border-radius: 30px;
  object-fit: cover;
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow:
    0 0 0 2px rgba(124,58,237,0.18),
    0 0 22px rgba(34,211,238,0.10);
}
.brand-name{
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(90deg, var(--neon2), var(--neon1), var(--neon3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link{
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}
.nav-link.active{
  color: var(--text);
  background: linear-gradient(90deg, rgba(34,211,238,0.10), rgba(124,58,237,0.10));
  border-color: rgba(34,211,238,0.22);
  box-shadow: 0 0 18px rgba(34,211,238,0.10);
}

/* Mobile toggle (hidden on desktop) */
.nav-toggle{
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255,255,255,0.75);
  border-radius: 99px;
}

/* Responsive header behavior */
@media (max-width: 900px){
  .nav{ display: none; }      /* JS se later open karenge */
  .nav-toggle{ display: inline-block; }
  .brand{ min-width: auto; }
}



/* =========================
   Hero Section (Casino vibe)
========================= */
.hero{
  position: relative;
  padding: 84px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}

.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,12,0.55) 0%, rgba(7,7,12,0.85) 70%, rgba(7,7,12,1) 100%),
    radial-gradient(900px 500px at 20% 20%, rgba(34,211,238,0.14), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(124,58,237,0.16), transparent 60%),
    url("https://images.axios.com/0QEBwvFQohFbG1WNAWozYmo4NUo=/0x826:6264x4349/1366x768/2025/07/10/1752167764477.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34,211,238,0.08), rgba(124,58,237,0.10), rgba(244,63,94,0.06));
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-title{
  margin: 0 0 12px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.hero-subtitle{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Buttons (casino neon) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  min-height: 44px;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 0 22px rgba(34,211,238,0.08);
}

.btn-primary{
  background: linear-gradient(90deg, rgba(34,211,238,0.20), rgba(124,58,237,0.22));
  border-color: rgba(34,211,238,0.25);
  box-shadow:
    0 0 18px rgba(34,211,238,0.10),
    0 0 30px rgba(124,58,237,0.10);
}

.btn-primary:hover{
  box-shadow:
    0 0 24px rgba(34,211,238,0.16),
    0 0 40px rgba(124,58,237,0.14);
}

.btn-ghost{
  background: rgba(255,255,255,0.03);
}

/* Badges */
.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  font-size: 13px;
}

/* Mobile spacing */
@media (max-width: 600px){
  .hero{ padding: 64px 0 56px; }
  .hero-kicker{ letter-spacing: 1.4px; }
}


/* =========================
   Slots Section
========================= */
.slots-section{
  padding: 44px 0 54px;
}

.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-kicker{
  margin: 0 0 8px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.section-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
}

.section-subtitle{
  margin: 0;
  color: rgba(255,255,255,0.72);
  max-width: 70ch;
  line-height: 1.6;
}

.section-cta{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.section-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(34,211,238,0.25);
  box-shadow: 0 0 20px rgba(34,211,238,0.10);
}

/* Grid */
.slots-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card */
.slot-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.slot-card:hover{
  transform: translateY(-2px);
  border-color: rgba(124,58,237,0.25);
  box-shadow:
    0 0 24px rgba(124,58,237,0.10),
    0 0 18px rgba(34,211,238,0.08);
}

.slot-thumb{
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
}
.slot-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.slot-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,7,12,0.85) 100%);
  pointer-events: none;
}

.slot-body{
  padding: 14px;
}

.slot-title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.slot-text{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.slot-btn{
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1000px){
  .slots-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .section-head{ flex-direction: column; align-items: flex-start; }
  .section-cta{ width: 100%; text-align: center; }
  .slots-grid{ grid-template-columns: 1fr; }
}



/* =========================
   Poker Section (6 cards)
========================= */
.poker-section{
  padding: 44px 0 54px;
  border-top: 1px solid var(--stroke);
}

/* 3 per row desktop */
.poker-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.poker-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.poker-card:hover{
  transform: translateY(-2px);
  border-color: rgba(34,211,238,0.25);
  box-shadow:
    0 0 24px rgba(34,211,238,0.10),
    0 0 18px rgba(124,58,237,0.08);
}

.poker-thumb{
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
}
.poker-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.poker-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,7,12,0.85) 100%);
  pointer-events: none;
}

.poker-body{ padding: 14px; }

.poker-title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.poker-text{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.poker-btn{
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1000px){
  .poker-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .poker-grid{ grid-template-columns: 1fr; }
}



/* =========================
   Featured Duo Section (2 big cards)
========================= */
.feature-duo{
  padding: 44px 0 60px;
  border-top: 1px solid var(--stroke);
}

.duo-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Big card */
.duo-card{
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.duo-card:hover{
  transform: translateY(-2px);
  border-color: rgba(244,63,94,0.22);
  box-shadow:
    0 0 28px rgba(124,58,237,0.10),
    0 0 22px rgba(34,211,238,0.10),
    0 0 18px rgba(244,63,94,0.08);
}

.duo-media{
  position: absolute;
  inset: 0;
}
.duo-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

/* Dark overlay for readable text */
.duo-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 20% 20%, rgba(34,211,238,0.12), transparent 55%),
    radial-gradient(700px 380px at 80% 25%, rgba(124,58,237,0.14), transparent 55%),
    linear-gradient(180deg, rgba(7,7,12,0.20) 0%, rgba(7,7,12,0.86) 75%, rgba(7,7,12,0.96) 100%);
}

.duo-content{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.duo-tag{
  margin: 0 0 8px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.74);
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.duo-title{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}

.duo-text{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.76);
  line-height: 1.6;
  max-width: 58ch;
}

.duo-btn{
  width: fit-content;
  padding-left: 16px;
  padding-right: 16px;
}

/* Responsive */
@media (max-width: 980px){
  .duo-grid{ grid-template-columns: 1fr; }
  .duo-card{ min-height: 300px; }
}
@media (max-width: 560px){
  .duo-card{ min-height: 280px; }
  .duo-content{ left: 14px; right: 14px; bottom: 14px; }
}



/* =========================
   Single Casino Image Section
========================= */
.casino-image-section{
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.casino-image-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,12,0.45), rgba(7,7,12,0.85)),
    url("https://www.ueberreuter.at/wp-content/uploads/Casinos-Austria_Gewinnspiel-.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.casino-image-content{
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.casino-image-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
}

.casino-image-text{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}

/* Responsive */
@media (max-width: 640px){
  .casino-image-section{
    min-height: 280px;
  }
}


/* =========================
   FOOTER – FINAL (3 COLUMNS)
========================= */

.site-footer{
  margin-top: 60px;
  padding-top: 10px;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(124,58,237,0.12), transparent 60%),
    radial-gradient(1200px 500px at 80% 0%, rgba(34,211,238,0.10), transparent 60%),
    linear-gradient(180deg, rgba(5,5,10,0.9), rgba(0,0,0,1));
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* -------- TOP GRID -------- */
.footer-top.footer-3col{
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 22px;
  padding: 36px 0 28px;
}

/* -------- FOOTER BOX -------- */
.footer-col{
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

/* -------- BRAND COLUMN -------- */
.footer-brand{ padding: 22px; }

.footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo img{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 0 0 2px rgba(124,58,237,0.18),
    0 0 22px rgba(34,211,238,0.12);
}

.footer-logo span{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #22d3ee, #7c3aed, #f43f5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-size: 14px;
}

/* -------- CONTACT EMAIL -------- */
.footer-contact{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-label{
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-email{
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  transition: all .2s ease;
}

.footer-email:hover{
  border-color: rgba(34,211,238,0.35);
  box-shadow: 0 0 20px rgba(34,211,238,0.15);
}

/* -------- TITLES -------- */
.footer-title{
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.92);
}

/* -------- LINKS -------- */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border: 1px solid transparent;
  transition: all .15s ease;
}

.footer-links a:hover{
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* -------- BOTTOM BAR -------- */
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.footer-mini{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mini a{
  color: rgba(255,255,255,0.7);
}

.footer-mini a:hover{
  color: rgba(255,255,255,0.95);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1000px){
  .footer-top.footer-3col{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px){
  .footer-top.footer-3col{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}




/* =========================
   Blog Section (Casino Theme)
========================= */
.blog-section{
  padding: 44px  60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-section .section-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
}

.blog-section .section-header h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.15;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.2px;
}

.blog-section .section-header p{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: clamp(13px, 1.4vw, 16px);
}

/* Grid: 3 per row desktop */
.blog-cards-container{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card */
.blog-card{
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.blog-card:hover{
  transform: translateY(-2px);
  border-color: rgba(34,211,238,0.22);
  box-shadow:
    0 0 26px rgba(34,211,238,0.10),
    0 0 20px rgba(124,58,237,0.08);
}

/* Image */
.blog-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* Subtle overlay for casino vibe */
.blog-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 260px at 20% 10%, rgba(34,211,238,0.10), transparent 55%),
    radial-gradient(700px 260px at 80% 12%, rgba(124,58,237,0.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  opacity: 0.95;
}

.blog-card .card-content{
  position: relative;
  z-index: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Title */
.blog-card .card-content h3{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: rgba(255,255,255,0.92);

  /* clamp lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Excerpt */
.blog-card .card-content p{
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
  font-size: 14px;

  /* clamp lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read Article Button */
.read-article-btn{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(34,211,238,0.18), rgba(124,58,237,0.20));
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, filter .15s ease;
}

.read-article-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(34,211,238,0.28);
  box-shadow:
    0 0 24px rgba(34,211,238,0.12),
    0 0 26px rgba(124,58,237,0.10);
  filter: brightness(1.05);
}

/* Explore More (bottom) */
.explore-more-container{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.explore-more-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.explore-more-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(244,63,94,0.25);
  box-shadow: 0 0 22px rgba(244,63,94,0.10);
}

/* Responsive */
@media (max-width: 1000px){
  .blog-cards-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card img{ height: 180px; }
}

@media (max-width: 620px){
  .blog-cards-container{
    grid-template-columns: 1fr;
  }
  .blog-section .section-header{
    text-align: left;
  }
}

