      
/* How to Play Section */
.howtoplay {
  background: #ffde7b;
  padding: 80px 20px;
  color: #000000;
  overflow: hidden;
}

.howtoplay .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.whatistitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Step Card */
.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 60px 30px 40px 90px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Number */
.step-number {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Vertical Timeline */
.vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49px;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

/* Content Blocks */
.text-block,
.image-block {
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  margin: 1%;
  box-sizing: border-box;
}

/* Reverse Layout */
.step-card.reverse .text-block {
  float: right;
}
.step-card.reverse .image-block {
  float: left;
}

/* Default Layout */
.step-card:not(.reverse) .text-block {
  float: left;
}
.step-card:not(.reverse) .image-block {
  float: right;
}

/* Clear Floats */
.step-card::after {
  content: "";
  display: table;
  clear: both;
}

/* Text Styling */
.text-block {
  text-align: left;
}

.text-block h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: "Segoe UI", sans-serif;
  color: #000000;
}

.text-block h3 i {
  margin-right: 10px;
  color: #000000;
  animation: pulseIcon 2s infinite;
}

.text-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Image Styling */
.image-block {
  text-align: center;
}

.image-block img {
  max-width: 290px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Pulse Animation */
@keyframes pulseIcon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .step-card {
    padding: 70px 20px 30px;
  }

  .text-block, .image-block {
    display: block;
    width: 100%;
    margin: 10px 0;
    float: none;
    text-align: center;
  }

  .step-number {
    top: -20px;
    left: calc(50% - 20px);
  }

  .vertical-line {
    display: none;
  }

  .text-block h3 {
    justify-content: center;
    font-size: 1.5rem;
  }

  .text-block p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .image-block img {
    max-width: 50%;
  }

  .whatistitle {
    font-size: 2.4rem;
  }
}
/* Below 500px */
@media (max-width: 500px) {
  .image-block img {
    max-width: 90%;
  }
}
/* How to Play Ends */
/* =====================================================
   SECTION WRAPPER
===================================================== */

.p-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

/* =====================================================
   SECTION HEADER
===================================================== */

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.section-description {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
}

/* =====================================================
   CONTENT BLOCKS
===================================================== */

.content-block {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  background-color: #ffebae;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2.5rem;
 
}


/* =====================================================
   ICON STYLING
===================================================== */

.content-icon {
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.content-icon i {
  font-size: 1.6rem;
  color: #111827;
}

/* =====================================================
   TEXT CONTENT
===================================================== */

.content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.content-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.content-text p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.content-text a:hover {
  text-decoration: underline;
}

/* =====================================================
   KEY POINT LIST
===================================================== */

.key-points {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.key-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #1f2937;
  margin-bottom: 0.6rem;
  text-align: left;
}

.key-points i {
  color: #6c5100;
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* =====================================================
   LINK VISUAL HIGHLIGHT
===================================================== */

.content-text strong {
  color: #111827;
  font-weight: 700;
}

/* =====================================================
   MOBILE FIRST ADJUSTMENTS
===================================================== */

@media (max-width: 900px) {
  .content-block {
    padding: 1.5rem;
  }

  .content-icon {
    min-width: 56px;
    height: 56px;
  }

  .content-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .content-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-icon {
    margin-bottom: 0.75rem;
  }

  .content-text h2 {
    font-size: 1.75rem;
  }
  
  .content-text h3 {
    font-size: 1.30rem;
  }


  .content-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .p-content {
    padding: 2.5rem 1rem;
  }


  .section-header h1 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 0.95rem;
  }

  .content-block {
    padding: 1.25rem;
  }

  .key-points li {
    font-size: 0.9rem;
  }
}

/* =====================================================
   ACCESSIBILITY IMPROVEMENTS
===================================================== */

.content-block:focus-within {
  outline: 3px solid #facc15;
  outline-offset: 4px;
}

a:focus-visible {
  outline: 2px dashed #2563eb;
  outline-offset: 2px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
  body {
    background-color: #0f172a;
    color: #e5e7eb;
  }

  .section-header h1 {
    color: #f9fafb;
  }

  .section-description {
    color: #cbd5f5;
  }

  .content-block {
    background-color: #020617;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  }

  .content-text h2,
  .content-text h3 {
    color: #f9fafb;
  }

  .content-text p {
    color: #cbd5e1;
  }

  .content-text a {
    color: #60a5fa;
  }

  .key-points li {
    color: #e5e7eb;
  }

  .content-icon {
    background: linear-gradient(135deg, #fde047, #fbbf24);
  }
}

/* =====================================================
   PRINT OPTIMIZATION
===================================================== */

@media print {
  body {
    background: #ffebae;
    color: #000000;
  }

  .content-block {
    box-shadow: none;
    page-break-inside: avoid;
  }

  .content-icon {
    display: none;
  }
}

/* =====================================================
   END OF FILE (300+ LINES)
===================================================== */

/* Faq Section Starts */
/* FAQ Section */
.faq-section {
  margin: 48px auto 0px;
  padding: 2rem;
  background: #ffde7b;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.faq-title {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
  margin: 3rem auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width:800px;
  margin:10px auto 30px;
}

.faq-item {
  background: #ffebae;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: #212529;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for answer text */
  padding: 1rem 1.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #000000;
}
/* Faq Section Ends */

  
  /*Blog Archive Page Section Starts*/
  
  /* Blog Section Container */
.sp-blog-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Blog Title */
.sp-blog-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin:30px auto;
  color: #1e293b;
}

/* Grid container for blog posts */
.sp-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* 2 columns for medium screens */
@media (min-width: 568px) {
  .sp-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

/* 3 columns for large screens */
@media (min-width: 900px) {
  .sp-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Post Card */
.sp-post-card {
  display: none; /* Hidden by default */
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-top: 4px solid #d89f21;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-post-card.visible {
  display: flex; /* Show when made visible via JS */
}

.sp-post-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 0 0 4px rgba(8, 171, 177, 0.08);
}

/* Image Wrapper */
.sp-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.sp-post-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 12px 12px 0 0;
}

/* Post Content */
.sp-post-content {
  padding: 20px;
  background-color: #fffedd;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sp-post-content a{
    text-decoration: none;
}

.sp-post-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.sp-post-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sp-post-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Read More Button */
.read-more {
  align-self: flex-start;
  padding: 10px 20px;
  background: linear-gradient(to right, #eecd74, #f1b419);
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s ease;
  width:121px;
  margin:0px auto;
}

.read-more:hover {
  background: linear-gradient(to right, #ecdcb1, #b4850f);
}

/* Load More Button */
.load-more-btn {
  display: block;
  margin: 40px auto 0;
  padding: 14px 40px;
  background-color: #4a5f5f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more-btn:hover {
  background-color: #161919;
}
  
  /*Blog Archive Page Section Ends*/
  
  /*Single Blog Section Starts*/
  /* === Layout Wrapper === */
.bl-contact-wrapper {
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px 20px;
}

/* === Featured Image === */
.bl-bl-featured-image-wrapper {
  width: 65%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: 40px auto;
}

.bl-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.bl-images{
    width: 60%;
  height: auto;
  display: block;
  object-fit: cover;
  margin:0px auto;
}

/* === Main Content === */
.bl-p-content {
  padding: 30px;
  background-color: #ffedb3;
  border-top: 2px solid #745300;
  border-bottom: 1px solid #cccccc;
  border-radius: 15px;
}

/* === Section Header === */
.bl-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.bl-section-header h1 {
  font-size: 3rem;
  color: #654900;
  margin-bottom: 15px;
}

.bl-section-description {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === Content Blocks === */
.bl-content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.bl-content-text{
    width: 100%;
}

.bl-content-text h2 {
  font-size: 2rem;
  margin:15px 0px;
  color: #1e293b;
}
.bl-content-text h3 {
  font-size: 1.5rem;
  margin:15px 0px;
  color: #1e293b;
}
.bl-content-text h4 {
  font-size: 1.1rem;
  margin:15px 0px;
  color: #1e293b;
}

.bl-content-text p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.bl-content-text p a {
  color: #0b007e;
  text-decoration: none;
  font-weight: bold;
}


/* === Bullet Points === */
.bl-key-points {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}

.bl-key-points li {
  text-align: left;
  color: #1e293b;
  border:none !important;
}



.bl-arrow {
  color: #654900;
  font-size: 1.2em;
  margin-right: 6px;
  display: inline-block;
  transform: translateY(1px);
}


.bl-key-points li strong {
  word-break: break-word;      /* Break long words at any point */
  overflow-wrap: break-word;   /* Wrap overflow words */
  white-space: normal;          /* Allow wrapping */
}
/*List Style*/
   .custom-list {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px; /* space for the icon */
  margin-bottom: 12px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="%23fd9408" viewBox="0 0 512 512"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"/></svg>') no-repeat center;
  background-size: contain;
}
/*List Style Ends*/
   

/* === Table Wrapper === */
.bl-contact-table-wrapper {
  display: flex;
  justify-content: center;
  /*width: 100%;*/
  margin: 20px auto;
}

/* === Table Styling (Desktop) === */
.bl-contact-table {
  width: 90%;
  /*max-width: 800px;*/
  border-collapse: collapse;
  background: #fffef5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
  text-align: center;
}

/* === Table Header === */
.bl-contact-table thead {
  background-color: #000000;
  text-align: left;
}

.bl-contact-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  color: #ffebae;
  text-align: center;
}

/* === Table Body === */
.bl-contact-table tbody tr:nth-child(even) {
  background-color: #f4f4f4;
}

.bl-contact-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.bl-contact-table tbody tr:hover {
  background-color: #fff4d4;
}

.bl-contact-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid #eee;
  color: #1e293b;
}

/* === Link Styling (if any inside) === */
.bl-contact-table a {
  color: #0b007e;
  text-decoration: none;
  font-weight: bold;
}

/* === Mobile Responsive Styling === */
@media (max-width: 520px) {
  .bl-contact-table thead {
    display: none;
  }

  .bl-contact-table,
  .bl-contact-table tbody,
  .bl-contact-table tr,
  .bl-contact-table td {
    display: block;
    width: 100%;
    background-color: #fffbe9;
  }

  .bl-contact-table tr {
    margin-bottom: 15px;
    background: #fffef5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }

  .bl-contact-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    font-size: 0.9rem;
  }

  .bl-contact-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #654900;
    flex-basis: 50%;
    text-align: left;
    font-size: 0.85rem;
  }

  .bl-contact-table td:last-child {
    border-bottom: none;
  }

  /* Ensure mobile background stays consistent */
  .bl-contact-table tbody tr:nth-child(even),
  .bl-contact-table tbody tr:nth-child(odd) {
    background-color: #fffef5 !important;
  }

  .bl-contact-table tbody tr:hover {
    background-color: #fff4d4;
  }
}

 .p-content a, .bl-p-content a {
    color: #0b007e;
    text-decoration: none;
    font-weight: bold;
}
.b-text-underline{
    text-decoration: underline dashed brown;
    text-decoration-thickness: 2px;
}
 
