@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #006a34;
  --primary-light: rgba(0, 106, 52, 0.12);
  --dark: #041b11;
  --light: #f2fff8;
  --glass: rgba(255, 255, 255, 0.15);
  --border-glass: rgba(255, 255, 255, 0.25);
  --text: #0c1f17;
  --text-muted: #4b5c56;
  --shadow: 0 15px 35px rgba(0, 40, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #02140b 0%, #0f2f21 45%, #154534 75%, #051b10 100%);
  color: var(--light);
  min-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.85;
}

main {
  padding: 80px 16px 64px;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.glass-panel {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 27, 16, 0.82);
  border-bottom: 2px solid var(--primary);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 36px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand img {
  height: 40px;
  width: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
}

.main-nav a {
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--light);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(80vw, 320px);
  height: 100vh;
  background: rgba(2, 20, 11, 0.95);
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  padding: 92px 32px;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 1200;
  display: none;
}

.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}

.hero {
  display: grid;
  gap: 36px;
  align-items: center;
  padding: clamp(48px, 10vw, 72px) 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a857, #006a34);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 106, 52, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 106, 52, 0.45);
  text-decoration: none;
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #00c96a, #008542);
  font-size: 1.05rem;
  padding: 16px 28px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(0, 255, 140, 0.5);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(0, 255, 140, 0.1);
  border-color: rgba(0, 255, 140, 0.8);
}

.highlights {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

.highlight-card {
  background: rgba(0, 14, 8, 0.65);
  border: 1px solid rgba(0, 106, 52, 0.3);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 140, 0.45);
}

.highlight-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.highlight-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
}

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

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 140, 0.25);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 40, 20, 0.85) 95%);
  color: #eafff4;
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card-link {
  color: #bbffe0;
  font-weight: 600;
  margin-top: 12px;
}

.main-footer {
  margin-top: 80px;
  border-top: 2px solid var(--primary);
  background: linear-gradient(to bottom, rgba(4, 27, 17, 0.9), rgba(2, 12, 8, 0.96));
  padding: 64px 16px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.footer-column h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 106, 52, 0.22);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  gap: 32px;
  align-items: start;
  padding: clamp(36px, 6vw, 48px) 0;
}

.article-header h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.article-content {
  display: grid;
  gap: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.article-content ul {
  margin: 0;
  padding-left: 20px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 140, 0.25);
  background: rgba(4, 27, 17, 0.65);
  color: #eafff4;
  font-size: 1rem;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 255, 140, 0.45);
}

.contact-form option {
  color: #041b11;
}

/* Sports Section & Featured Cards */
.sports-section {
  margin-top: 48px;
}

.featured-card {
  background: linear-gradient(135deg, rgba(0, 106, 52, 0.25) 0%, rgba(0, 40, 20, 0.65) 100%);
  border: 2px solid rgba(0, 255, 140, 0.35);
  text-align: center;
  padding: 40px 32px;
}

.featured-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.featured-card .btn {
  margin-top: 20px;
}

/* Article Images */
.article-hero-image {
  margin: -32px -32px 24px -32px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.article-image {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 140, 0.2);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  display: block;
  padding: 12px 16px;
  background: rgba(0, 20, 10, 0.7);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

/* Info Cards */
.info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 106, 52, 0.15);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  margin: 16px 0;
}

.info-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-card-content {
  color: rgba(255, 255, 255, 0.85);
}

/* Event Grid */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.event-card {
  background: rgba(0, 20, 10, 0.6);
  border: 1px solid rgba(0, 255, 140, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 140, 0.5);
}

.event-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.event-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #bbffe0;
}

.event-card p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Checklist Section */
.checklist-section {
  background: rgba(0, 40, 20, 0.4);
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
}

.checklist-section h3 {
  margin: 0 0 16px;
  color: #bbffe0;
}

.styled-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.check-icon {
  color: #00ff8c;
  font-weight: bold;
}

/* Tip Box */
.tip-box {
  background: linear-gradient(135deg, rgba(0, 150, 80, 0.2), rgba(0, 80, 40, 0.2));
  border: 1px solid rgba(0, 255, 140, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.tip-box h4 {
  margin: 0 0 12px;
  color: #bbffe0;
}

/* Warning Box */
.warning-box {
  background: rgba(255, 180, 0, 0.1);
  border-left: 4px solid #ffa500;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.warning-box h4 {
  margin: 0 0 8px;
  color: #ffd700;
}

.warning-serious {
  background: rgba(255, 60, 60, 0.1);
  border-left-color: #ff4444;
}

.warning-serious h4 {
  color: #ff6b6b;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin: 20px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 20, 10, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: rgba(0, 106, 52, 0.3);
  color: #bbffe0;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(0, 106, 52, 0.1);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.stat-card {
  background: rgba(0, 106, 52, 0.2);
  border: 1px solid rgba(0, 255, 140, 0.25);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ff8c;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Region Sections */
.region-section h3 {
  color: #bbffe0;
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 255, 140, 0.2);
}

/* Explainer Section */
.explainer-section {
  background: rgba(0, 30, 15, 0.5);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.odds-example {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.odds-type {
  background: rgba(0, 40, 20, 0.6);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 140, 0.15);
}

.odds-type strong {
  display: block;
  color: #bbffe0;
  margin-bottom: 8px;
}

/* Bet Types Grid */
.bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.bet-type-card {
  background: rgba(0, 20, 10, 0.6);
  border: 1px solid rgba(0, 255, 140, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.bet-type-card h4 {
  margin: 0 0 8px;
  color: #bbffe0;
  font-size: 1rem;
}

.bet-type-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Platform Cards */
.platform-list {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.platform-card {
  background: rgba(0, 20, 10, 0.6);
  border: 1px solid rgba(0, 255, 140, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s ease;
}

.platform-card:hover {
  border-color: rgba(0, 255, 140, 0.5);
}

.platform-card h4 {
  margin: 0 0 12px;
  color: #bbffe0;
  font-size: 1.2rem;
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.feature-tag {
  background: rgba(0, 106, 52, 0.3);
  color: #bbffe0;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Requirements List */
.requirements-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.requirement-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 20, 10, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 140, 0.15);
}

.req-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.req-content strong {
  display: block;
  color: #bbffe0;
  margin-bottom: 4px;
}

/* Responsible Tips */
.responsible-tips {
  background: rgba(255, 60, 60, 0.05);
  border: 1px solid rgba(255, 100, 100, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.responsible-tips h3 {
  color: #ff9999;
  margin: 20px 0 12px;
}

.responsible-tips h3:first-child {
  margin-top: 0;
}

/* Cricket Markets */
.cricket-markets {
  margin: 24px 0;
}

.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.market-item {
  background: rgba(0, 106, 52, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Destination Cards */
.destination-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.dest-card {
  background: rgba(0, 20, 10, 0.6);
  border: 1px solid rgba(0, 255, 140, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.dest-card h4 {
  margin: 0 0 8px;
  color: #bbffe0;
}

.dest-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Takeaways Box */
.takeaways-box {
  background: linear-gradient(135deg, rgba(0, 106, 52, 0.2), rgba(0, 60, 30, 0.3));
  border: 2px solid rgba(0, 255, 140, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.takeaways-box ul {
  margin: 0;
  padding-left: 20px;
}

.takeaways-box li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

/* Navigation Links */
.navigation-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 255, 140, 0.2);
}

.nav-link {
  color: #bbffe0;
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(0, 106, 52, 0.2);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-link:hover {
  background: rgba(0, 106, 52, 0.35);
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 106, 52, 0.15), rgba(0, 60, 30, 0.25));
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 140, 0.25);
}

/* Card Link Styling */
.card-link {
  color: #bbffe0;
  font-weight: 600;
  margin-top: 12px;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #00ff8c;
  text-decoration: none;
}

/* Article Content Links */
.article-content a {
  color: #bbffe0;
  border-bottom: 1px solid rgba(187, 255, 224, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.article-content a:hover {
  color: #00ff8c;
  border-bottom-color: #00ff8c;
  text-decoration: none;
}

.link-highlight {
  color: #00ff8c;
  text-decoration: underline;
  font-weight: 600;
}

.link-highlight:hover {
  color: #4dffb5;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  main {
    padding-top: 72px;
  }

  .article-hero-image {
    margin: -32px -16px 24px -16px;
    border-radius: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .navigation-links {
    flex-direction: column;
  }

  .nav-link {
    text-align: center;
  }
}
