/* JackBetPot - Premium Sports Betting & Casino Affiliate Site */
/* Color Scheme: Navy Blue + Gold */

:root {
  
  --navy-dark: #1a2332;
  --navy-medium: #2c3e50;
  --navy-light: #34495e;
  --gold-primary: #0C4B96;
  --gold-light: #0C4B96;
  --gold-dark: #0C4B96;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --text-dark: #1a2332;
  --text-muted: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --custom-blue: #148bec;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-dark);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gray-medium);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transform: scale(2);
  position: absolute;

}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--custom-blue);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--custom-blue);
  color: var(--gray-medium);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section - 2 Column Layout */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f1a2e 0%, #1a2332 50%, #0a4070 100%);
  color: white;
  padding: 6rem 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(20, 139, 236, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideInLeft 0.8s ease-out;
}

.hero-tagline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #148bec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle a {
  color: #148bec;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-subtitle a:hover {
  color: #1ea3ff;
  text-decoration: underline;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  animation: fadeInUp 1s ease-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--custom-blue);
  color: white;
}

.btn-primary:hover {
  background: #1ea3ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(55, 105, 212, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--custom-blue);
}

.btn-secondary:hover {
  background: var(--custom-blue);
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  animation: fadeInUp 1.2s ease-out;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  fill: #ffd700;
}

/* Hero Image Section */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease-out;
}

.hero-logo {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(20, 139, 236, 0.4));
  /* animation: float 20s ease-in-out infinite; */
  z-index: 2;
}

.hero-decoration-circle {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 139, 236, 0.2) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

.hero-decoration-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 2px,
    transparent 2px
  );
  background-size: 30px 30px;
  opacity: 0.3;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
  .hero-container {
    gap: 3rem;
  }
  
  .hero-tagline {
    font-size: 3rem;
  }
  
  .hero-logo {
    max-width: 400px;
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tagline {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .hero-logo {
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 6rem 0;
  }
  
  .nav-logo {
    margin-left: 4rem;
  }

  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-tagline {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .trust-badges {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .hero-logo {
    max-width: 250px;
  }
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-light);
}

.section-title {
  text-align: start;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  text-align: start;
}

.gold-underline {
  display: inline-block;
  position: relative;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 2px;
}

/* Cards */
.card {
  background: var(--white);
  
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  padding: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--gold-primary);
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Review Cards */
.review-card {
  background-color: #0C4B96 ;
  background-size: cover; 
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Full-width horizontal card layout */
.review-card-horizontal {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.review-card-horizontal .review-header {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 15px;
  border-right: 2px solid rgba(255,255,255,0.1);
}

.review-card-horizontal .review-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

.review-card-horizontal .review-highlights {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 0;
}

.review-card-horizontal .highlight-item {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px;
}

.review-card-horizontal .review-bonus {
  flex: 0 0 250px;
  margin-bottom: 0;
}

.review-card-horizontal .review-cta {
  flex: 0 0 200px;
  flex-direction: column;
}

.review-header {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.review-logo {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
}

.review-title h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: var(--gray-light);
  font-size: 1.2rem;
}

.rating-number {
  color: var(--gray-medium);
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 700;
}

.review-body {
  padding: 30px;
}

.review-highlights {
  display: flex;
  gap: 1px;
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px;
  border-radius: 5px;
  color: var(--gray-medium);
}

.highlight-item svg {
  width: 20px;
  height: 20px;
  fill: var(--success);
}

.review-bonus {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 25px;
}

.bonus-label {
  font-size: 0.9rem;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.review-cta {
  display: flex;
  gap: 15px;
}

.review-cta .btn {
  flex: 1;
  justify-content: center;
}

/* Full Review Page */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  padding: 140px 20px 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 1000px;
  margin: 0 auto;
  text-align: start;
  margin-bottom: 20px;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #28a745;
}

.breadcrumb span {
  color: rgba(255,255,255,0.6);
}

/* Review Detail */
.review-detail {
  max-width: 900px;
  margin: -30px auto 0;
  position: relative;
  z-index: 1;
}

.review-detail-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.15);
  overflow: hidden;
}

.review-detail-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.review-detail-logo {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-dark);
}

.review-detail-info h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.review-detail-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-badge {
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
}

.review-detail-cta .btn {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.review-detail-body {
  padding: 50px;
}

.review-section {
  margin-bottom: 40px;
}

.review-section h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-medium);
}

.review-section h3 svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-primary);
}

.review-section p,
.review-section ul {
  color: var(--text-dark);
  line-height: 1.8;
}

.review-section ul {
  list-style: none;
  padding-left: 0;
}

.review-section li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.review-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.pros, .cons {
  padding: 25px;
  border-radius: 10px;
}

.pros {
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid var(--success);
}

.cons {
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid var(--danger);
}

.pros h4, .cons h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.pros li::before {
  content: '✓';
  color: var(--success);
}

.cons li::before {
  content: '✗';
  color: var(--danger);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-medium);
}

.comparison-table th {
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:hover {
  background: var(--gray-light);
}

.comparison-table .operator-name {
  font-weight: 600;
  color: var(--navy-dark);
}

.comparison-table .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.check-icon {
  color: var(--success);
  font-size: 1.2rem;
}

.cross-icon {
  color: var(--danger);
  font-size: 1.2rem;
}

/* Bonus Cards */
.bonus-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bonus-card-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-operator {
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
}

.bonus-type {
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.bonus-card-body {
  padding: 25px;
}

.bonus-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.bonus-code-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.bonus-code {
  flex: 1;
  background: var(--gray-light);
  border: 2px dashed var(--gold-primary);
  padding: 12px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
}

.copy-btn {
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.bonus-details {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bonus-details p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Filters */
.filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: 10px;
}

.filter-btn {
  padding: 10px 25px;
  background: var(--white);
  border: 2px solid var(--gray-medium);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-dark);
}

/* Predictions */
.prediction-card {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.prediction-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.prediction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-medium);
}

.prediction-sport {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sport-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sport-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

.prediction-date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prediction-match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.team {
  text-align: center;
  flex: 1;
}

.team-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.vs {
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.prediction-tip {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.tip-label {
  font-size: 0.85rem;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.tip-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.tip-odds {
  font-size: 0.9rem;
  color: var(--navy-medium);
  margin-top: 5px;
}

/* Betting School */
.level-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.level-tab {
  padding: 15px 35px;
  background: var(--white);
  border: 2px solid var(--gray-medium);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.level-tab:hover,
.level-tab.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-dark);
}

.lesson-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.lesson-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: var(--gold-primary);
}

.lesson-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.lesson-card h4 {
  margin-bottom: 10px;
}

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

.lesson-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 30px;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-primary);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

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

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

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold-primary);
  margin-bottom: 20px;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.gambling-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.gambling-logo {
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 115px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {

  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--navy-dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pros-cons {
    grid-template-columns: 1fr;
  }
  
  .review-detail-header {
    flex-direction: column;
    text-align: center;
  }
  
  .review-detail-logo {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-tagline {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-logo {
    width: 250px;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .review-highlights {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    gap: 20px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  
  .level-tabs {
    flex-direction: column;
  }
  
  .review-detail-body {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .card, .feature-card, .review-card {
    padding: 20px;
  }
  
  .bonus-value {
    font-size: 1.5rem;
  }
}

/* New Responsive Casino Card Layout */
.casino-card {
  background: rgb(245, 243, 243);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  
  gap: 30px;
  border: 1px solid var(--gray-medium);
}

.casino-card:hover {
  box-shadow: 0 8px 30px rgba(12, 75, 150, 0.15);
  transform: translateY(-3px);
}

.casino-card-left {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: start;
}

.casino-card-logo-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}

.casino-card-logo {
  width: 120px;
  height: 120px;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  border: 2px solid var(--gray-medium);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.casino-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.casino-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-card-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.casino-card-rating {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 5px;
  margin: 5px 0;
}

.casino-card-stars {
  color: var(--custom-blue);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.casino-card-rating-number {
  background: var(--custom-blue);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.casino-card-bonus {
  background: linear-gradient(135deg, #f7f9fa, #e9ecef25);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid;
  border-left-color: var(--custom-blue);
}

.casino-bonus-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: -5px;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  
}

.casino-bonus-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  

}

.casino-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
}

.casino-card-buttons .btn {
  width: 100%;
  text-align: center;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive adjustments for casino cards */
@media (max-width: 968px) {
  .casino-card {
    flex-direction: column;
    align-items: stretch;
  }
  
  .casino-card-left {
    flex-direction: column;
  }
  
  .casino-card-logo-section {
    flex-direction: row;
    align-items: center;
    min-width: auto;
  }
  
  .casino-card-logo {
    width: 100px;
    height: 100px;
  }
  
  .casino-card-info {
    gap: 10px;
  }
  
  .casino-card-buttons {
    flex-direction: row;
    min-width: auto;
  }
  
  .casino-card-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .casino-card {
    padding: 20px;
    gap: 20px;
  }
  
  .casino-card-left {
    gap: 15px;
  }
  
  .casino-card-logo-section {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .casino-card-logo {
    width: 80px;
    height: 80px;
  }
  
  .casino-card-name {
    font-size: 1.4rem;
  }
  
  .casino-card-stars {
    font-size: 1.1rem;
  }
  
  .casino-bonus-amount {
    font-size: 1.2rem;
  }
}

/* Sportsbook Card Layout - Matching Casino Card Design */
.sportsbook-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 200px 180px 1fr 220px;
  gap: 30px;
  align-items: center;
  border: 2px solid var(--gray-medium);
  position: relative;
  overflow: hidden;
    mask: radial-gradient(40px at 40px 40px,#0000 98%,#000) -40px -40px;
      background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);

}





.sportsbook-card:hover {
  box-shadow: 0 8px 35px rgba(40, 167, 69, 0.2);
  transform: translateY(-5px);
}

/* Logo & Name Section */
.sportsbook-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.sportsbook-logo {
  max-width: 150px;
  max-height: 150px;
  /* background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gray-medium);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  padding: 15px;
  transition: all 0.3s ease;
}

/* .sportsbook-card:hover .sportsbook-logo {
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
} */

.sportsbook-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sportsbook-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

/* Rating Section */
.sportsbook-rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.sportsbook-rating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.sportsbook-stars {
  color: #28a745;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.sportsbook-score {
  background: #28a745;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Bonus Description Section */
.sportsbook-bonus-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
}

.sportsbook-bonus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sportsbook-bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

.sportsbook-bonus-details {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* CTA Section */
.sportsbook-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-left: 1px dashed #28a745;
}

.btn-bet {
  width: 100%;
  text-align: center;
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.btn-bet:hover {
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
  transform: scale(1.05);
}

.sportsbook-cta-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.sportsbook-review-link {
  font-size: 0.9rem;
  color: #28a745;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sportsbook-review-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Responsive adjustments for sportsbook cards */
@media (max-width: 1200px) {
  .sportsbook-card {
    grid-template-columns: 180px 160px 1fr 200px;
    gap: 20px;
    padding: 25px;
  }

  .sportsbook-logo {
    width: 130px;
    height: 130px;
  }

  .sportsbook-name {
    font-size: 1.2rem;
  }

  .sportsbook-bonus-amount {
    font-size: 1.3rem;
  }
}

@media (max-width: 968px) {
  .sportsbook-card {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 25px;
  }

  .sportsbook-logo-wrapper {
    grid-column: 1 / 2;
  }

  .sportsbook-rating-wrapper {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .sportsbook-bonus-wrapper {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .sportsbook-cta-wrapper {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}

@media (max-width: 576px) {
  .sportsbook-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .sportsbook-logo-wrapper {
    grid-column: 1;
  }

  .sportsbook-rating-wrapper {
    grid-column: 1;
    grid-row: 2;
  }

  .sportsbook-bonus-wrapper {
    grid-column: 1;
    grid-row: 3;
  }

  .sportsbook-cta-wrapper {
    grid-column: 1;
    grid-row: 4;
  }

  .sportsbook-logo {
    width: 120px;
    height: 120px;
  }

  .sportsbook-name {
    font-size: 1.3rem;
  }

  .btn-bet {
    padding: 14px 25px;
    font-size: 1rem;
  }
}

/* End of Sportsbook Card Styles */

/* Player Reviews Section */
.player-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.player-review-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--gray-medium);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.player-review-card:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  transform: translateY(-5px);
  border-color: var(--custom-blue);
}

.review-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.player-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--custom-blue) 0%, #0C4B96 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.player-avatar svg {
  width: 35px;
  height: 35px;
  color: white;
}

.player-info {
  flex: 1;
}

.player-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 5px 0;
}

.review-rating {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 3px;
  letter-spacing: 2px;
}

.review-site {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

.review-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  font-style: italic;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive Player Reviews */
@media (max-width: 968px) {
  .player-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .player-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .player-review-card {
    padding: 20px;
  }

  .player-avatar {
    width: 50px;
    height: 50px;
  }

  .player-avatar svg {
    width: 30px;
    height: 30px;
  }

  .player-name {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.9rem;
  }
}

/* Terms Accordion Section */
.terms-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: white;
  border-radius: 10px;
  border: 2px solid var(--gray-medium);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--custom-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.accordion-header:hover {
  background: var(--gray-light);
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  flex: 1;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: var(--custom-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

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

.accordion-item.active .accordion-header {
  background: var(--gray-light);
  border-bottom: 2px solid var(--gray-medium);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 20px 25px;
}

.accordion-content p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Responsive Accordion */
@media (max-width: 768px) {
  .terms-accordion {
    max-width: 100%;
  }

  .accordion-header {
    padding: 18px 20px;
  }

  .accordion-title {
    font-size: 1rem;
  }

  .accordion-icon {
    width: 20px;
    height: 20px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-content {
    padding: 18px 20px;
  }

  .accordion-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .accordion-header {
    padding: 15px 18px;
  }

  .accordion-title {
    font-size: 0.95rem;
  }

  .accordion-content {
    padding: 0 18px;
  }

  .accordion-item.active .accordion-content {
    padding: 15px 18px;
  }
}

/* 10 Facts Section */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.fact-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
  border-color: var(--custom-blue);
}

.fact-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--custom-blue) 0%, #0C4B96 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(12, 75, 150, 0.3);
}

.fact-content {
  flex: 1;
}

.fact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.fact-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

/* Responsive Facts Grid */
@media (max-width: 968px) {
  .facts-grid {
    gap: 20px;
  }

  .fact-card {
    padding: 25px;
  }

  .fact-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .fact-title {
    font-size: 1.2rem;
  }

  .fact-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .fact-card {
    padding: 20px;
    gap: 15px;
  }

  .fact-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    border-radius: 10px;
  }

  .fact-title {
    font-size: 1.1rem;
  }

  .fact-description {
    font-size: 0.85rem;
  }
}

/* Signup Steps Section */
.signup-steps {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
  border-color: var(--custom-blue);
}

.step-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--custom-blue) 0%, #0C4B96 100%);
  border-radius: 12px 0 0 12px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--custom-blue) 0%, #0C4B96 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(12, 75, 150, 0.3);
}

.step-number span {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}

.step-highlight {
  background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
  border-left: 4px solid var(--warning);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.step-highlight strong {
  color: var(--navy-dark);
  font-weight: 700;
}

/* Responsive Signup Steps */
@media (max-width: 768px) {
  .signup-steps {
    gap: 25px;
  }

  .step-card {
    padding: 25px;
    gap: 20px;
  }

  .step-number {
    width: 60px;
    height: 60px;
  }

  .step-number span {
    font-size: 1.7rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .signup-steps {
    gap: 20px;
  }

  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }

  .step-card:hover {
    transform: translateY(-5px);
  }

  .step-number {
    width: 55px;
    height: 55px;
  }

  .step-number span {
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .step-highlight {
    text-align: left;
  }
}

/* Crypto No Deposit Casinos Section */
.crypto-benefits-risks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.crypto-column {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
}

.crypto-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--success);
}

.crypto-section-header.risks {
  border-bottom-color: var(--danger);
}

.crypto-icon {
  width: 35px;
  height: 35px;
  color: var(--success);
}

.crypto-section-header.risks .crypto-icon {
  color: var(--danger);
}

.crypto-section-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--navy-dark);
}

.crypto-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.crypto-list li {
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
  color: var(--text-dark);
}

.crypto-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
}

.crypto-column:nth-child(2) .crypto-list li::before {
  content: '⚠';
  color: var(--danger);
}

.crypto-list li strong {
  color: var(--navy-dark);
  font-weight: 700;
}

/* How to Choose Section */
.crypto-choose-section {
  margin: 50px 0;
}

.crypto-subsection-title {
  font-size: 1.8rem;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.crypto-subsection-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--custom-blue) 0%, #0C4B96 100%);
  border-radius: 2px;
}

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

.crypto-choose-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
  transition: all 0.3s ease;
  text-align: center;
}

.crypto-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  border-color: var(--custom-blue);
}

.choose-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.crypto-choose-card h4 {
  font-size: 1.2rem;
  color: var(--navy-dark);
  margin: 0 0 10px 0;
}

.crypto-choose-card p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Features Table Section */
.crypto-features-section {
  margin: 50px 0;
}

.crypto-features-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
}

.feature-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid var(--gray-medium);
}

.feature-row:first-child {
  background: linear-gradient(135deg, var(--custom-blue) 0%, #0C4B96 100%);
  color: white;
}

.feature-row:first-child strong {
  color: white;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row:not(:first-child):hover {
  background: var(--gray-light);
}

.feature-label,
.feature-value {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-label {
  font-weight: 600;
  color: var(--navy-dark);
  border-right: 1px solid var(--gray-medium);
}

.feature-row:first-child .feature-label {
  border-right-color: rgba(255,255,255,0.3);
}

.feature-value {
  color: var(--text-dark);
  line-height: 1.6;
}

.table-icon {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* Trends Section */
.crypto-trends-section {
  margin: 50px 0;
}

.crypto-trends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.trend-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
  text-align: center;
  transition: all 0.3s ease;
}

.trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  border-color: var(--custom-blue);
}

.trend-emoji {
  font-size: 3rem;
  margin-bottom: 15px;
}

.trend-card h4 {
  font-size: 1.2rem;
  color: var(--navy-dark);
  margin: 0 0 10px 0;
}

.trend-card p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Responsive Crypto Section */
@media (max-width: 968px) {
  .crypto-benefits-risks {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .crypto-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .crypto-trends-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-row {
    grid-template-columns: 200px 1fr;
  }
}

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

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-label {
    border-right: none;
    border-bottom: 1px solid var(--gray-medium);
  }

  .feature-row:first-child .feature-label {
    border-bottom-color: rgba(255,255,255,0.3);
  }
}

@media (max-width: 576px) {
  .crypto-column {
    padding: 25px 20px;
  }

  .crypto-subsection-title {
    font-size: 1.5rem;
  }

  .crypto-choose-card,
  .trend-card {
    padding: 20px;
  }

  .choose-icon,
  .trend-emoji {
    font-size: 2.5rem;
  }

  .feature-label,
  .feature-value {
    padding: 15px;
  }
}

/* Expert Tips & Tricks Section */
.expert-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.expert-tip-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--gray-medium);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expert-tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--custom-blue) 0%, #0C4B96 100%);
}

.expert-tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.15);
  border-color: var(--custom-blue);
}

.tip-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--custom-blue) 0%, #0C4B96 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(12, 75, 150, 0.3);
}

.tip-icon {
  width: 35px;
  height: 35px;
  color: white;
}

.tip-content {
  flex: 1;
}

.tip-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.tip-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}

.tip-example {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  border-left: 4px solid var(--custom-blue);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.tip-example strong {
  color: var(--navy-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

/* Responsive Expert Tips */
@media (max-width: 968px) {
  .expert-tips-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .expert-tip-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .expert-tip-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }

  .tip-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .tip-icon {
    width: 30px;
    height: 30px;
  }

  .tip-title {
    font-size: 1.2rem;
  }

  .tip-description {
    font-size: 0.9rem;
  }

  .tip-example {
    text-align: left;
  }
}

/* Betting Strategy Cards */
.strategy-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.strategy-icon {
  margin-bottom: 20px;
}

.strategy-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 15px;
}

.strategy-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.strategy-card ul {
  list-style: none;
}

.strategy-card ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.strategy-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--custom-blue);
  font-weight: bold;
}

/* Live Betting Tips */
.live-betting-content {
  max-width: 1200px;
  margin: 0 auto;
}

.betting-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.betting-tip-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 4px solid var(--custom-blue);
  transition: all 0.3s ease;
}

.betting-tip-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.tip-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--custom-blue), #0a3d7a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(20, 139, 236, 0.3);
}

.betting-tip-card h4 {
  color: var(--navy-dark);
  font-size: 1.3rem;
  margin: 10px 0 15px;
}

.betting-tip-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Betting Markets Accordion */
.betting-markets-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.betting-markets-accordion .accordion-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.betting-markets-accordion .accordion-header {
  width: 100%;
  padding: 20px 25px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  transition: background 0.3s ease;
}

.betting-markets-accordion .accordion-header:hover {
  background: var(--gray-light);
}

.betting-markets-accordion .accordion-header span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.betting-markets-accordion .accordion-header svg {
  transition: transform 0.3s ease;
  fill: var(--custom-blue);
}

.betting-markets-accordion .accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.betting-markets-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.betting-markets-accordion .accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 25px 25px;
}

.betting-markets-accordion .accordion-content p {
  margin: 10px 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.betting-markets-accordion .accordion-content p strong {
  color: var(--navy-dark);
}

/* Responsive Betting Sections */
@media (max-width: 768px) {
  .strategy-card {
    padding: 25px 20px;
  }

  .betting-tips-grid {
    grid-template-columns: 1fr;
  }

  .betting-tip-card {
    padding: 25px 20px;
  }

  .betting-markets-accordion .accordion-header {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .betting-markets-accordion .accordion-content {
    padding: 0 20px;
  }

  .betting-markets-accordion .accordion-item.active .accordion-content {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {  
  
  .casino-card-buttons {
    flex-direction: column;
  }
  
  .casino-card-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Bottom Sticky Banner */
.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--custom-blue) 0%, #0a3d7a 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.4s ease;
  animation: slideUpBanner 0.5s ease-out;
 
}

.bottom-banner.hidden {
  transform: translateY(100%);
}

.bottom-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 80px 15px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.banner-casino-logo {
  flex-shrink: 0;
  max-width: 120px;
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.banner-info {
  flex: 1;
  color: white;
}

.banner-info h4 {
  margin: 0 0 4px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.banner-info p {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.banner-cta-btn {
  flex-shrink: 0;
  background: #28a745;
  color: #e3e3e4;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.banner-cta-btn:hover {
  background: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 55, 0.5);
  color: whitesmoke;
}

.banner-close {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) rotate(90deg);
}

.banner-close svg {
  pointer-events: none;
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Responsive Bottom Banner */
@media (max-width: 968px) {
  .bottom-banner-content {
    padding: 12px 70px 12px 20px;
    gap: 15px;
  }
  
  .banner-casino-logo {
    width: 100px;
    height: 45px;
  }
  
  .banner-info h4 {
    font-size: 1.1rem;
  }
  
  .banner-info p {
    font-size: 0.85rem;
  }
  
  .banner-cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .bottom-banner-content {
    flex-wrap: wrap;
    padding: 15px 60px 15px 15px;
    gap: 12px;
  }
  
  .banner-casino-logo {
    width: 90px;
    height: 40px;
  }
  
  .banner-info {
    flex: 1 1 100%;
    order: 2;
  }
  
  .banner-cta-btn {
    order: 3;
    flex: 1;
  }
}

@media (max-width: 576px) {
  .bottom-banner-content {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 50px 15px 15px;
    gap: 10px;
  }
  
  .banner-casino-logo {
    align-self: flex-start;
    width: 85px;
    height: 36px;
  }
  
  .banner-info h4 {
    font-size: 1rem;
  }
  
  .banner-info p {
    font-size: 0.8rem;
  }
  
  .banner-cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .banner-close {
    top: 15px;
    right: 15px;
    transform: translateY(0);
    width: 32px;
    height: 32px;
  }
  
  .banner-close:hover {
    transform: rotate(90deg);
  }
}


@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}