/* BK8 Promotions Centre - Mobile-First CSS */
/* Theme: Warm Orange/Bronze - Bonus & Rewards Focus */

:root {
  --primary: #1a1408;
  --primary-light: #2e2610;
  --primary-warm: #3d3015;
  --accent: #f4a437;
  --accent-hover: #ffb84d;
  --accent-glow: rgba(244, 164, 55, 0.3);
  --bronze: #cd7f32;
  --white: #ffffff;
  --bg: #12100a;
  --bg-card: #1a1408;
  --text-light: #c8b89a;
  --border: #4a3a20;
  --success: #4caf50;
  --danger: #f44336;
  --warning: #f4a437;
  --bonus-gradient: linear-gradient(135deg, #f4a437 0%, #cd7f32 50%, #f4a437 100%);
  --vip-gradient: linear-gradient(135deg, #2e2610 0%, #4d3a10 50%, #2e2610 100%);
  --ribbon-gradient: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  background-color: var(--bg);
  color: var(--white);
  font-size: 16px;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo-img {
  height: 34px;
  width: auto;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  background: var(--accent);
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 14px;
  font-weight: 700;
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 1px solid var(--border);
}

.nav.active {
  display: block;
}

.nav-list {
  list-style: none;
  padding: 8px 16px;
}

.nav-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.nav-list a {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: var(--accent);
}

/* Hero Section - Banner Promotional Style */
.hero {
  background: var(--vip-gradient);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  background: var(--ribbon-gradient);
  padding: 8px 16px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content {
  padding: 40px 16px;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, var(--accent-glow) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.2) 0%, transparent 40%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--white);
}

.hero h1 span {
  color: var(--accent);
  display: block;
  font-size: 2.2rem;
}

.hero p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.hero-feature {
  background: rgba(244, 164, 55, 0.2);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--primary-light);
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
}

/* Section Styling */
.section {
  padding: 32px 0;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '🎁';
  font-size: 1.5rem;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 700px;
}

/* Bonus Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bonus-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-light) 100%);
  border-radius: 8px;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--accent-glow);
  border-color: var(--accent);
}

.bonus-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.bonus-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--bonus-gradient);
  color: var(--primary);
  padding: 6px 14px;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  min-width: 60px;
  text-align: center;
}

.bonus-badge.new {
  background: var(--success);
  color: var(--white);
}

.bonus-badge.hot {
  background: var(--ribbon-gradient);
  color: var(--white);
}

.bonus-badge.exclusive {
  background: linear-gradient(135deg, var(--bronze) 0%, #a05c20 100%);
  color: var(--white);
}

.bonus-header {
  background: var(--vip-gradient);
  padding: 24px 20px;
  text-align: center;
}

.bonus-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-type {
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-body {
  padding: 20px;
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.bonus-title a {
  color: inherit;
  text-decoration: none;
}

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

.bonus-description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.bonus-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.bonus-detail {
  background: var(--primary);
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
}

.bonus-detail-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.bonus-detail-value {
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
}

.bonus-detail-value.highlight {
  color: var(--accent);
}

.bonus-cta {
  display: block;
  background: var(--bonus-gradient);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.bonus-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

/* Category Pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Quick Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-card-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Terms Box */
.terms-box {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.terms-box h4 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1rem;
}

.terms-box ul {
  list-style: none;
  color: var(--text-light);
  font-size: 0.875rem;
}

.terms-box li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.terms-box li:last-child {
  border-bottom: none;
}

.terms-box li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

/* Article Styles */
.article {
  max-width: 800px;
  margin: 0 auto;
}

.article h1 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

.article h2 {
  font-size: 1.375rem;
  margin: 32px 0 16px;
  color: var(--accent);
}

.article h3 {
  font-size: 1.125rem;
  margin: 24px 0 12px;
  color: var(--white);
}

.article p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.article ul, .article ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--text-light);
}

.article li {
  margin-bottom: 8px;
}

.article a {
  color: var(--accent);
  text-decoration: none;
}

.article a:hover {
  text-decoration: underline;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Tip Box */
.tip-box {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.tip-box h4 {
  color: var(--accent);
  margin-bottom: 8px;
}

.tip-box p {
  margin: 0;
  color: var(--text-light);
}

/* Warning Box */
.warning-box {
  background: rgba(220, 53, 69, 0.1);
  border-left: 4px solid var(--danger);
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.warning-box h4 {
  color: var(--danger);
  margin-bottom: 8px;
}

.warning-box p {
  margin: 0;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  margin: 32px 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsible Gambling Notice */
.responsible-notice {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid var(--danger);
  border-radius: 8px;
  padding: 16px;
  margin: 24px 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.responsible-notice strong {
  color: var(--danger);
  display: block;
  margin-bottom: 8px;
}

.responsible-notice a {
  color: var(--accent);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--bonus-gradient);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
  background: var(--primary);
  padding: 40px 0 20px;
  margin-top: 40px;
  border-top: 1px solid var(--accent);
}

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

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: block;
    position: static;
    background: none;
    border: none;
  }

  .nav-list {
    display: flex;
    gap: 24px;
    padding: 0;
  }

  .nav-list li {
    padding: 0;
    border: none;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-details {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .hero {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Lazy Loading Images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* Contextual Link Styling */
.contextual-link {
  color: var(--accent);
  font-weight: 500;
}

.contextual-link:hover {
  text-decoration: underline;
}

/* ================================
   Daily Promotions Page Styles
   ================================ */

/* Main Content */
.main-content {
  padding: 32px 0;
}

.main-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.main-content .intro {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 700px;
}

.main-content section {
  margin-bottom: 48px;
}

.main-content h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}

.main-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.main-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.main-content p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.main-content ul, .main-content ol {
  color: var(--text-light);
  padding-left: 24px;
  margin-bottom: 16px;
}

.main-content li {
  margin-bottom: 8px;
}

.main-content a {
  color: var(--accent);
  text-decoration: none;
}

.main-content a:hover {
  text-decoration: underline;
}

/* Day Grid - Weekly Schedule */
.day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.day-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-light) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--accent-glow);
  border-color: var(--accent);
}

.day-card.special {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-light) 100%);
}

.day-card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.day-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.day-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.day-card .code {
  background: var(--primary);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 8px;
}

.day-card .code strong {
  color: var(--accent);
}

/* Promo Tables */
.promo-table,
.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
}

.promo-table th,
.main-content table th {
  background: var(--primary-warm);
  color: var(--accent);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.promo-table td,
.main-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.promo-table tr:last-child td,
.main-content table tr:last-child td {
  border-bottom: none;
}

.promo-table tr:hover td,
.main-content table tr:hover td {
  background: var(--primary-light);
}

/* Cashback Grid */
.cashback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.cashback-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-light) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cashback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--accent-glow);
  border-color: var(--accent);
}

.cashback-card.vip {
  border: 2px solid var(--bronze);
  background: linear-gradient(135deg, var(--primary-warm) 0%, #2a1f0a 100%);
}

.cashback-card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.cashback-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* Event Cards */
.event-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-light) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.event-card:hover {
  border-color: var(--accent);
}

.event-card h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.event-card ul {
  margin: 12px 0;
}

/* Lucky 88 Special Box */
.lucky88-box {
  background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-light) 100%);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.lucky88-box h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}

.lucky88-box ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.lucky88-box li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lucky88-box li::before {
  content: '🍀';
}

.lucky88-box li:last-child {
  border-bottom: none;
}

.lucky88-box .code {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 16px;
}

.lucky88-box .code strong {
  background: var(--bonus-gradient);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
}

/* How to Claim - Ordered List */
.how-to-claim ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.how-to-claim li {
  counter-increment: step-counter;
  padding: 16px 16px 16px 60px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.how-to-claim li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--bonus-gradient);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Related Grid */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.related-card {
  display: block;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-light) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--accent);
  background: var(--primary-warm);
  color: var(--accent);
  transform: translateX(4px);
  text-decoration: none;
}

/* Terms Section */
.terms ul {
  list-style: none;
  padding: 0;
}

.terms li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.terms li:last-child {
  border-bottom: none;
}

.terms li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: bold;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .day-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cashback-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-content h1 {
    font-size: 2.25rem;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .day-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .day-grid .day-card:nth-child(6),
  .day-grid .day-card:nth-child(7) {
    grid-column: span 1;
  }

  .cashback-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .main-content h1 {
    font-size: 2.5rem;
  }
}
