/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #1a2a3a;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(10, 43, 94, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0 20px;
  border-bottom: 2px solid #f47b20;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a2b5e;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo i {
  margin-right: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 10px;
}

.nav-menu li a {
  text-decoration: none;
  color: #0a2b5e;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: #f47b20;
  color: #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #0a2b5e;
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #0a2b5e;
}

.slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.slide-content {
  max-width: 700px;
  color: #ffffff;
  text-shadow: 2px 2px 3px black; 
}

.slide-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 3px black; 
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  background: #f47b20;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(244, 123, 32, 0.4);
}

.btn-primary:hover {
  background: #e06a10;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 123, 32, 0.5);
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.dot.active {
  background: #f47b20;
  border-color: #ffffff;
  transform: scale(1.2);
}

/* ===== HOME INTRO ===== */
.home-intro {
  padding: 60px 20px;
  text-align: center;
  background: #f8fafc;
}

.home-intro h2 {
  font-size: 2.4rem;
  color: #0a2b5e;
  margin-bottom: 12px;
}

.home-intro p {
  font-size: 1.1rem;
  color: #4a5a6a;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0a2b5e 0%, #1a4b8c 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  padding: 60px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #0a2b5e;
  font-size: 2rem;
  margin-bottom: 18px;
}

.about-text h3 {
  color: #0a2b5e;
  margin: 25px 0 10px;
  font-size: 1.3rem;
}

.about-text p {
  color: #3a4a5a;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  margin-top: 15px;
}

.about-text ul li {
  padding: 8px 0;
  font-weight: 500;
  color: #0a2b5e;
}

.about-text ul li i {
  margin-right: 10px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 43, 94, 0.15);
}

.about-features {
  background: #f8fafc;
  padding: 60px 20px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(10, 43, 94, 0.06);
  border-bottom: 4px solid #f47b20;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card h4 {
  margin: 15px 0 8px;
  color: #0a2b5e;
}

.feature-card p {
  color: #5a6a7a;
  font-size: 0.95rem;
}

/* ===== SLOT / LIVE CASINO CONTENT ===== */
.slot-content,
.live-casino-content {
  padding: 60px 20px;
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  color: #0a2b5e;
  font-size: 2rem;
  margin-bottom: 18px;
}

.content-block h3 {
  color: #0a2b5e;
  margin: 30px 0 12px;
  font-size: 1.3rem;
}

.content-block p {
  color: #3a4a5a;
  margin-bottom: 15px;
}

/* ===== GAME GRID ===== */
.game-grid {
  margin-top: 50px;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.game-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.07);
  transition: 0.3s;
  text-align: center;
  border: 1px solid #eef2f6;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 43, 94, 0.12);
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.game-card p {
  padding: 14px 10px;
  font-weight: 700;
  color: #0a2b5e;
  font-size: 0.95rem;
}

/* ===== BLOG PAGE ===== */
.blog-content {
  padding: 60px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 43, 94, 0.07);
  transition: 0.3s;
  border: 1px solid #eef2f6;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(10, 43, 94, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
}

.blog-date {
  font-size: 0.8rem;
  color: #f47b20;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.blog-info h3 {
  color: #0a2b5e;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-info p {
  color: #5a6a7a;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.read-more {
  color: #f47b20;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  color: #0a2b5e;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 20px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-buttons {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 50px;
  border-radius: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.contact-btn i {
  font-size: 2rem;
}

.whatsapp-btn {
  background: #000ec5;
}

.whatsapp-btn:hover {
  background: #000ec5;
  transform: scale(1.04);
}

.telegram-btn {
  background: #0088cc;
}

.telegram-btn:hover {
  background: #0077b3;
  transform: scale(1.04);
}

/* ===== FIXED BUTTONS (bottom) ===== */
.fixed-buttons {
  position: fixed;
  bottom: 30px;
  width: 100%;
  pointer-events: none;
  z-index: 9999;
}

.left-group {
  position: absolute;
  left: 25px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}

.social-btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.social-btn:hover {
  transform: scale(1.1);
}

.register {
}

.whatsapp {
  background: #25D366;
}

.telegram {
  background: #0088cc;
}

.back-to-top {
  position: absolute;
  right: 25px;
  bottom: 0;
  pointer-events: auto;
  background: #f47b20;
  border: none;
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.4);
  transition: 0.3s;
}

.back-to-top:hover {
  background: #e06a10;
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .hero-slider {
    height: 400px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }
  .game-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
  .left-group {
    left: 15px;
  }
  .back-to-top {
    right: 15px;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .social-btn-register {
  }
}
  .social-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .game-cards {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .game-card img {
    height: 120px;
  }
  .slide-content h1 {
    font-size: 1.8rem;
  }
}









/* ===== ADDITIONAL HOME PAGE STYLES ===== */

/* Slide Badge */
.slide-badge {
  display: inline-block;
  background: rgba(244, 123, 32, 0.2);
  color: #f47b20;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 1px solid rgba(244, 123, 32, 0.3);
}

.slide-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.slide-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.slide-stats i {
  margin-right: 8px;
  color: #f47b20;
}

/* Slider Navigation Arrows */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(244, 123, 32, 0.8);
  transform: translateY(-50%) scale(1.05);
}

/* Quick Info Banner */
.quick-info {
  background: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #eef2f6;
}

.info-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-item i {
  font-size: 2rem;
  color: #f47b20;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5ed;
  border-radius: 12px;
}

.info-item h4 {
  color: #0a2b5e;
  font-size: 1rem;
  margin-bottom: 2px;
}

.info-item p {
  color: #6a7a8a;
  font-size: 0.85rem;
}

/* Welcome Section */
.welcome-section {
  padding: 70px 0;
  background: #f8fafc;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  background: rgba(244, 123, 32, 0.1);
  color: #f47b20;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.welcome-text h2 {
  font-size: 2.4rem;
  color: #0a2b5e;
  margin-bottom: 18px;
}

.welcome-text p {
  font-size: 1.05rem;
  color: #4a5a6a;
  line-height: 1.8;
  margin-bottom: 25px;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.welcome-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #0a2b5e;
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 43, 94, 0.12);
}

.welcome-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #f47b20, #e06a10);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(244, 123, 32, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Game Categories */
.game-categories {
  padding: 70px 0;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.category-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.06);
  border: 1px solid #eef2f6;
  transition: 0.3s;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(10, 43, 94, 0.1);
  border-color: #f47b20;
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #fff5ed, #fef0e0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f47b20;
  transition: 0.3s;
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, #f47b20, #e06a10);
  color: #ffffff;
}

.category-card h3 {
  color: #0a2b5e;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.category-card p {
  color: #6a7a8a;
  font-size: 0.9rem;
}

.category-count {
  display: inline-block;
  background: #f8fafc;
  color: #f47b20;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 12px;
}

/* Top Slots Preview */
.top-slots {
  padding: 70px 0;
  background: #f8fafc;
  text-align: center;
}

.slot-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.slot-preview {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.06);
  transition: 0.3s;
}

.slot-preview:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 43, 94, 0.1);
}

.slot-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slot-preview-info {
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slot-preview-info h4 {
  color: #0a2b5e;
  font-size: 1rem;
}

.slot-rating {
  color: #6a7a8a;
  font-size: 0.9rem;
}

/* Bonus Section */
.bonus-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a2b5e, #1a4b8c);
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.bonus-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #f47b20;
}

.bonus-icon {
  font-size: 2.5rem;
  color: #f47b20;
  margin-bottom: 15px;
}

.bonus-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f47b20;
  margin: 10px 0;
}

.bonus-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose {
  padding: 70px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.06);
  border: 1px solid #eef2f6;
  text-align: center;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #f47b20;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #fff5ed, #fef0e0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #f47b20;
}

.why-card h4 {
  color: #0a2b5e;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  color: #5a6a7a;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 70px 0;
  background: #f8fafc;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.06);
  text-align: left;
  border: 1px solid #eef2f6;
}

.testimonial-stars {
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #3a4a5a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-author h4 {
  color: #0a2b5e;
  font-size: 1rem;
}

.testimonial-author span {
  color: #6a7a8a;
  font-size: 0.85rem;
}

/* Blog Preview */
.blog-preview {
  padding: 70px 0;
  text-align: center;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-preview-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.06);
  border: 1px solid #eef2f6;
  text-align: left;
  transition: 0.3s;
}

.blog-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 43, 94, 0.1);
}

.blog-preview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-preview-info {
  padding: 20px;
}

.blog-preview-info .blog-date {
  color: #f47b20;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-preview-info h3 {
  color: #0a2b5e;
  font-size: 1.1rem;
  margin: 8px 0;
}

.blog-preview-info p {
  color: #5a6a7a;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2b5e, #1a4b8c);
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #0a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 4fr ;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-about h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #f47b20;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .info-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .welcome-content {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slot-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .blog-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .slider-prev,
  .slider-next {
    display: none;
  }
  
  .slide-stats {
    flex-direction: column;
    gap: 8px;
  }
  
  .info-items {
    grid-template-columns: 1fr;
  }
  
  .welcome-features {
    grid-template-columns: 1fr;
  }
  
  .welcome-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 15px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .slot-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .slot-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .slide-buttons {
    flex-direction: column;
    align-items: center;
  }
}










/* ===== ABOUT PAGE EXTRA STYLES ===== */

.about-intro {
  margin-bottom: 50px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 20px;
  border-left: 5px solid #f47b20;
}

.about-intro h2 {
  color: #0a2b5e;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3a4a;
}

.about-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eef2f6;
}

.about-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.about-section h2 {
  color: #0a2b5e;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f47b20;
  display: inline-block;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2a3a4a;
  margin-bottom: 18px;
}

.about-section strong {
  color: #0a2b5e;
}

.about-list {
  list-style: none;
  margin: 20px 0;
}

.about-list li {
  padding: 12px 20px;
  margin-bottom: 10px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #f47b20;
  font-size: 1.02rem;
  color: #2a3a4a;
}

.about-list li strong {
  color: #0a2b5e;
}

.about-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.about-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(10, 43, 94, 0.06);
  border: 1px solid #eef2f6;
  transition: 0.3s;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(10, 43, 94, 0.1);
}

.about-card i {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.about-card h4 {
  color: #0a2b5e;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.95rem;
  color: #5a6a7a;
  line-height: 1.6;
}

.about-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.about-steps li {
  counter-increment: step;
  padding: 18px 25px 18px 70px;
  margin-bottom: 15px;
  background: #f8fafc;
  border-radius: 14px;
  position: relative;
  font-size: 1.05rem;
  color: #2a3a4a;
  border: 1px solid #eef2f6;
  transition: 0.3s;
}

.about-steps li:hover {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(10, 43, 94, 0.06);
}

.about-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #f47b20;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.about-steps li strong {
  color: #0a2b5e;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: linear-gradient(135deg, #0a2b5e 0%, #1a4b8c 100%);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.trust-section h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.badge i {
  font-size: 1.8rem;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 992px) {
  .about-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 1.6rem;
  }
  
  .about-section h2 {
    font-size: 1.4rem;
  }
  
  .about-grid-cards {
    grid-template-columns: 1fr;
  }
  
  .about-steps li {
    padding: 18px 20px 18px 60px;
    font-size: 0.98rem;
  }
  
  .about-steps li::before {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    left: 15px;
  }
  
  .trust-badges {
    gap: 20px;
  }
  
  .badge {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-intro {
    padding: 20px 15px;
  }
  
  .about-section {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}