:root {
  /* Snow Rider 3D Gamified Palette */
  --wood-dark: #3e2723;
  --wood-gradient: linear-gradient(180deg, #5d4037 0%, #3e2723 100%);
  --wood-orange: #ff6b1a;
  --wood-orange-gradient: linear-gradient(180deg, #ff8540 0%, #e65100 100%);
  
  --snow-white: #ffffff;
  --snow-shadow: #c8e6f9;
  --ice-blue: #e0f2fe;
  
  --text-main: #2c3e50;
  --text-light: #ffffff;
  --text-muted: #546e7a;
  
  --shadow-deep: 0 15px 35px rgba(0,0,0,0.3);
  --wood-bevel: inset 0 2px 0 rgba(255,255,255,0.2), 0 5px 0 #1a0f0d, 0 8px 15px rgba(0,0,0,0.4);
  --orange-bevel: inset 0 2px 0 rgba(255,255,255,0.3), 0 5px 0 #bf360c, 0 8px 15px rgba(255,107,26,0.4);
  
  --font-title: 'Luckiest Guy', cursive;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: 
    radial-gradient(circle at top, #f0f9ff 0%, #e0f2fe 100%);
  background-attachment: fixed;
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Immersive Snowy Valley Background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(90deg, #fff 0%, transparent 20%, transparent 80%, #fff 100%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: 
    radial-gradient(ellipse at bottom, rgba(200, 230, 249, 0.4) 0%, transparent 70%);
  clip-path: polygon(0 90%, 10% 60%, 25% 85%, 45% 40%, 65% 80%, 80% 55%, 100% 90%, 100% 100%, 0% 100%);
  z-index: -2;
  pointer-events: none;
}

/* Subtle Snowfall Animation - Disabled on Mobile for Performance */
.winter-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: 
    radial-gradient(4px 4px at 200px 300px, #fff, transparent),
    radial-gradient(3px 3px at 400px 100px, #fff, transparent),
    radial-gradient(3px 3px at 600px 400px, #fff, transparent);
  background-size: 800px 800px;
  animation: snowDrift 20s linear infinite;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .winter-overlay {
    animation: none; /* Disable expensive animation on mobile */
    display: none;    /* Optionally hide altogether for maximum TBT gain */
  }
}

@keyframes snowDrift {
  from { background-position: 0 0; }
  to { background-position: 400px 800px; }
}

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 65px 15px 0;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
header.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--wood-gradient);
  border-bottom: 4px solid #1a0f0d;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Snow on Top of Header */
header.top::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--snow-white);
  border-radius: 0 0 100% 100% / 0 0 50% 50%;
  filter: drop-shadow(0 2px 4px rgba(200,230,249,0.5));
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo:hover {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(1.1);
}

.header-games {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 20px;
  overflow: hidden;
}

.header-game-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(26, 15, 13, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  backdrop-filter: blur(5px);
}

.header-game-link img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.header-game-link span {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.header-game-link:hover {
  background: var(--wood-orange);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

@media (max-width: 1000px) {
  .header-games { display: none; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  background: var(--wood-gradient);
  color: #fff;
  border: 2px solid #1a0f0d;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 0 #1a0f0d;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #1a0f0d;
  filter: brightness(1.1);
}

.nav-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #1a0f0d;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 200px;
  transition: all 0.3s ease;
}

.search-bottom-link-none {
  display: none !important;
}

.search-box:focus-within {
  width: 280px;
  background: rgba(0,0,0,0.4);
  border-color: var(--wood-orange);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 500;
}

.search-input::placeholder {
  color: var(--text-muted);
}

/* ── Player Section ── */
.player-section {
  background: var(--wood-gradient);
  border: 6px solid #1a0f0d;
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: var(--shadow-deep);
  margin-bottom: 50px;
  position: relative;
}

/* Fluffy Snow Cap for Player Section */
.player-section::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 40px;
  width: 220px;
  height: 40px;
  background: var(--snow-white);
  border-radius: 50px 150px 60px 40px;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.2));
  z-index: 10;
}

.player-section::after {
  content: "";
  position: absolute;
  top: -15px;
  right: 50px;
  width: 140px;
  height: 30px;
  background: var(--snow-white);
  border-radius: 100px 30px 80px 40px;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.2));
  z-index: 10;
}

.player-container {
  width: 100%;
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #1a2a44; /* Dark blue safety background */
  border: 8px solid var(--wood-dark);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

#game-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.play-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

.play-placeholder:hover .hero-img {
  transform: scale(1.05);
}

.play-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 2;
}

.play-button {
  position: relative;
  z-index: 20;
  background: var(--wood-orange-gradient);
  color: #fff;
  border: none;
  padding: 24px 70px;
  font-family: var(--font-title);
  font-size: 40px;
  cursor: pointer;
  border-radius: 12px;
  border-bottom: 6px solid #bf360c;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.play-button::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: #fff;
  border-radius: 20px 40px 10px 30px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.play-button:hover {
  transform: translateY(-5px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 15px 40px rgba(255, 107, 26, 0.4);
}

.play-svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.game-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 0;
  gap: 20px;
}

.title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.game-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--wood-dark);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.game-title {
  font-family: var(--font-title);
  font-size: 38px;
  color: #ffffff; /* Bright white for maximum readability */
  letter-spacing: 0.5px;
  text-shadow: 
    2px 2px 0px #1a0f0d, 
    0 0 15px rgba(255,255,255,0.2);
  margin: 0;
  line-height: 1.2;
}

/* Helper for long game titles */
.game-title.long-title {
  font-size: 28px;
}

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

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #1a0f0d;
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--wood-gradient);
  color: #fff;
  box-shadow: 0 4px 0 #1a0f0d;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #1a0f0d;
  filter: brightness(1.1);
}

.btn-green {
  background: #2e7d32;
  border-color: #1b5e20;
}

.btn-share {
  background: var(--wood-orange-gradient);
  border-color: #bf360c;
}

/* Toast Notification - Gamified Wooden Style */
.toast {
  position: fixed;
  bottom: 30px;
  left: 20px;
  transform: translateY(150px);
  background: var(--wood-gradient);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  border: 3px solid #1a0f0d;
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 2px 0 rgba(255,255,255,0.1);
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast::before {
  content: "🔗";
  font-size: 20px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .toast { bottom: 90px; }
}

.content-link {
  color: var(--wood-orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.content-link:hover {
  color: #d84315;
  border-bottom-color: #d84315;
  background: rgba(255, 107, 26, 0.05);
}

.content-area {
  margin-top: 70px;
  background: #fff;
  border: 8px solid var(--wood-dark);
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--shadow-deep);

  position: relative;
  background-image: 
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23e0f2fe' fill-opacity='0.2'/%3E%3C/svg%3E");
}

.content-area::before {
  content: "";
  position: absolute;
  top: -25px;
  right: 60px;
  width: 200px;
  height: 40px;
  background: #fff;
  border-radius: 60px 40px 100px 50px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
  z-index: 10;
}

h2 {
  font-family: var(--font-title);
  font-size: 34px;
  margin-bottom: 24px;
  color: var(--wood-orange);
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
  letter-spacing: 0.5px;
}

h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 35px 0 15px;
  color: var(--wood-dark);
  letter-spacing: 0.5px;
  border-left: 5px solid var(--wood-orange);
  padding-left: 15px;
}

p, li, td {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: #263238; /* Improved contrast for readability */
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin-bottom: 28px;
}

li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--text-muted);
}

li::before {
  content: "❄";
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-size: 20px;
}

/* ── Try More Games Section ── */
.more-games-section {
  margin: 10px 0 50px;
  background: #fff;
  border: 4px solid var(--wood-dark);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.more-games-section h2 {
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--wood-orange);
  text-align: center;
  text-transform: uppercase;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.game-card {
  background: var(--wood-gradient);
  border: 3px solid #1a0f0d;
  border-radius: 10px;
  padding: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 0 #1a0f0d;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 8px 0 #1a0f0d, 0 12px 25px rgba(0,0,0,0.3);
  z-index: 10;
}

.game-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Perfect Square */
  overflow: hidden;
  border-radius: 8px;
  border: 4px solid #1a0f0d;
  margin-bottom: 10px;
  background: #1a2a44;
}

.game-thumb-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.game-card span {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0 #1a0f0d;
  display: block;
  line-height: 1.2;
}

/* ── FAQ Cards ── */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
  border: 3px solid var(--wood-dark);
  border-left: 6px solid var(--wood-orange);
  border-radius: 10px;
  padding: 22px 24px;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 0 #1a0f0d, 0 6px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "?";
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-title);
  font-size: 80px;
  color: var(--wood-orange);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 #1a0f0d, 0 12px 25px rgba(0,0,0,0.15);
  border-left-color: var(--wood-dark);
}

.faq-q {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--wood-dark) !important;
  text-transform: none !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin: 0 0 10px !important;
  letter-spacing: 0 !important;
}

.faq-a {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #546e7a !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .faq-container { grid-template-columns: 1fr; }
}



/* ── Controls & Tables ── */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 35px 0;
  background: #fff;
  border: 4px solid var(--wood-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

th, td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 2px solid var(--ice-blue);
}

th {
  background: var(--ice-blue);
  font-family: var(--font-title);
  color: var(--wood-dark);
  font-size: 18px;
  letter-spacing: 0.5px;
}

td {
  color: var(--text-main);
  font-weight: 500;
}

/* ── Footer ── */
footer {
  margin-top: 80px;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid var(--bg-ice);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.5);
}

/* ── Mobile Optimization ── */
@media (max-width: 768px) {
  .wrap { padding-top: 90px; }
  header.top { padding: 0 20px; height: 65px; }
  .logo { font-size: 22px; }
  .header-games, .nav-links, .search-box { display: none; }
  .player-section { border-radius: 0; margin: -15px -15px 30px; border-left: none; border-right: none; }
  .player-container { height: 420px; border-radius: 0; }
  .play-button { font-size: 30px; padding: 18px 45px; }
  .game-info-bar { 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
  }
  .title-wrap { 
    flex-direction: row; 
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: left;
  }
  .game-icon { width: 45px; height: 45px; border-width: 2px; }
  .actions { width: auto; gap: 6px; }
  .game-title { 
    font-size: 18px; 
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  /* Buttons optimization for single row */
  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* Adaptive button text for very small screens */
  @media (max-width: 450px) {
    .game-title { font-size: 16px; }
    .btn { padding: 8px 10px; }
    .btn span { display: none; } /* Assuming I wrap text in span */
  }
  .content-area { padding: 30px 20px; }
  h2 { font-size: 26px; }
  .more-games-section { padding: 20px 15px; margin-bottom: 30px; }
  .more-games-section h2 { font-size: 20px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Bottom Nav - Shown on Mobile */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--wood-gradient);
    border-top: 4px solid #1a0f0d;
    z-index: 1001;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    gap: 5px;
    opacity: 0.7;
    transition: all 0.2s;
  }

  .nav-item.active {
    opacity: 1;
    color: var(--wood-orange);
  }

  .nav-item svg { width: 24px; height: 24px; }
}

/* ── Search Dropdown ── */
.search-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  width: 340px;
  background: var(--wood-gradient);
  border: 4px solid #1a0f0d;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  z-index: 1002;
  overflow-y: auto;
  max-height: 400px;
  display: none;
}

.search-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s;
  border-bottom: 2px solid rgba(0,0,0,0.2);
}

.search-item:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 20px;
}

.search-item img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.search-item span {
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-blue);
}

/* Guides & Strategies Section */
.guides-section {
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 30px;
  border-top: 3px dashed rgba(62, 39, 35, 0.2);
}

.guides-section h2 {
  margin-top: 0 !important;
  text-align: center;
  font-size: 32px;
  color: var(--wood-dark);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--snow-white);
  border: 4px solid var(--wood-dark);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  transform: translateY(0);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.guide-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--wood-dark);
  position: relative;
}

.guide-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-info h3 {
  font-family: var(--font-title);
  color: var(--wood-orange);
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.guide-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}

.guide-btn {
  display: inline-block;
  background: var(--wood-orange-gradient);
  color: var(--text-light);
  font-family: var(--font-title);
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--wood-dark);
  box-shadow: var(--orange-bevel);
  transition: filter 0.2s;
  align-self: flex-start;
}

.guide-card:hover .guide-btn {
  filter: brightness(1.15);
}
