@import url('https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps:wght@400;700&family=Oswald:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Search Filter Box Styling */
.search-filter-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  
  .search-form {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .search-form .form-group {
    flex: 1;
    min-width: 180px;
  }
  
  .search-btn {
    align-self: center;
    background-color: #28a745;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .search-btn:hover {
    background-color: #218838;
  }
  
  /* Card Styling */
 /* Card Styling (Maintaining Previous Look) */
.card {
    border: 2px solid #28a745;
    transition: transform 0.5s, box-shadow 0.5s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px; /* Space between rows */
}
.copy-btn{
    background-color: #218838;
    outline: none;
    border: none;
}
.copy-btn:hover{
    background: #28a745;
    outline: none;
  }
  .copy-btn:focus{
    background: #28a745;
    outline: none;
    border: none;
  }

  .post{
    font-weight: 600;
    text-transform: capitalize;
  }

 /* how it work  */
.how-it-works {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #e0f7e0, #fff);
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-transform: capitalize;
  animation: fadeIn 2s ease-in-out;
}

.intro-text {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  animation: fadeInUp 1.5s ease-in-out;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.step {
  width: 22%;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

.step-icon img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.step-content h3 {
  font-size: 22px;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: #555;
}

.cta-button {
  margin-top: 50px;
}

.cta-start {
  padding: 15px 30px;
  background-color: #28a745;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
}

.cta-start:hover {
  background-color: #218838;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
  70% { box-shadow: 0 0 20px 20px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Add gap between cards */
.col-lg-3, .col-md-6, .col-sm-12 {
    margin-bottom: 20px; /* Adds space between the card rows */
}

/* Add gap between cards in the same row */
.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-3, .col-md-6, .col-sm-12 {
    padding-right: 15px;
    padding-left: 15px;
}

.small-logo {
    width: 80px;
    height: auto;
    margin: 0 auto;
}

/* VIP and Running Badge Styles */
.vip-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    animation: glowing-red 1.5s infinite;
}

.running-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: white;
    color: green;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    animation: glowing-green 1.5s infinite;
}

/* Comment Trigger Styling */
.card-comment-trigger {
    text-align: left;
    font-size: 12px;
    color: #007bff;
    cursor: pointer;
    margin-top: 10px;
    display: block;
}

/* Comment Popup Styles */
 /* Popup styling */
 .comment-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
#comment-form input, #comment-form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#comment-form button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: #28a745;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
/* Responsive Layout with Gaps */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
        padding-right: 10px;
        padding-left: 10px; /* Adds small gap between cards on mobile */
    }
    .small-logo {
      width: 70px;
      height: auto;
      margin: 0 auto;
  }
}

@media (max-width: 576px) {
    .col-sm-12 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
        padding-right: 10px;
        padding-left: 10px; /* Adds small gap between cards on mobile */
    }
}

  
  
  /* Pagination Styling */
 /* Pagination Styling */
.pagination-container {
  text-align: center;
  margin-top: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  gap: 10px; /* Space between pagination items */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  flex: 0 1 auto; /* Allow flexible sizing for items */
}

.pagination a {
  color: #28a745;
  padding: 10px 15px;
  text-decoration: none;
  border: 1px solid #28a745;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px; /* Adjust font size */
  white-space: nowrap; /* Prevent text wrapping */
}

.pagination a:hover {
  background-color: #28a745;
  color: white;
}

.pagination a.active {
  background-color: #28a745;
  color: white;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .pagination {
    gap: 8px; /* Reduce gap between items */
  }

  .pagination a {
    padding: 8px 12px; /* Adjust padding */
    font-size: 12px; /* Adjust font size */
  }
}

@media screen and (max-width: 480px) {
  .pagination {
    gap: 5px; /* Minimize spacing for very small screens */
  }

  .pagination a {
    padding: 6px 10px; /* Further reduce padding */
    font-size: 10px; /* Smaller font size for small screens */
  }
}

  
  /* Glowing Badge Animations */
  @keyframes glowing-red {
    0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 0, 0, 1); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
  }
  
  @keyframes glowing-green {
    0% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 0, 1); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
  }
  
  .pagenumber{
    margin-top: 10px;
  }
  /* Popup overlay */
.comment-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup content */
.popup-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Close button */
.close-btn {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  float: right;
}

/* Comments heading */
.popup-content h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #4CAF50;
}

/* Existing comments */
.existing-comments p {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 5px;
  margin: 5px 0;
  color: #333;
  text-align: left;
  font-size: 0.9em;
}

/* Form input and textarea */
#comment-name,
#comment-text {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.9em;
}

/* Submit button */
#comment-form button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#comment-form button:hover {
  background-color: #45a049;
}

  

  /* footer  */
  footer {
    position: relative;
    background: linear-gradient(135deg, #2e7d32, #004d40);
    padding: 40px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 10px;
  }
  
  .footer-container {
    position: relative;
    z-index: 2;
  }
  
  /* Social Icons */
  .social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.4s, transform 0.4s;
  }
  
  .social-icons a:hover {
    color: #00e676;
    transform: scale(1.1);
  }
  
  /* Quick Links */
  .quick-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .quick-links a {
    color: #ffffffcc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .quick-links a:hover {
    color: #00e676;
  }
  
  /* Footer Text */
  .footer-text {
    margin: 15px 0;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  
  .footer-text:hover {
    opacity: 1;
  }
  
  /* Responsible Gaming Warning */
  .responsible-gaming {
    color: white;
    font-size: 14px;
    margin-top: 15px;
  }
  
  .responsible-gaming .warning-emoji {
    font-size: 18px;
    margin-right: 5px;
  }
  
  /* Scroll to Top Button */
  .scroll-top-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00e676;
    color: #004d40;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.4s, transform 0.4s;
  }
  
  .scroll-top-btn:hover {
    background-color: #004d40;
    color: white;
    transform: scale(1.05);
  }
  
  /* Rotating Background Animation */
  footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.3), transparent);
    animation: rotate-bg 10s infinite linear;
    z-index: 1;
  }
  
  @keyframes rotate-bg {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    footer {
      padding: 30px 10px;
    }
    
    .social-icons a {
      font-size: 20px;
      margin: 0 8px;
    }
  
    .quick-links a {
      font-size: 13px;
      margin: 0 8px;
    }
  
    .footer-text, .responsible-gaming {
      font-size: 13px;
    }
    
    .scroll-top-btn {
      padding: 8px 18px;
      font-size: 13px;
    }
  }
  
  
  /* confetti  */
  .confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #4caf50;
    opacity: 0.9;
    border-radius: 50%;
    animation: confetti-fall 1s ease-out forwards;
    pointer-events: none; /* Confetti shouldn't interfere with user actions */
}

@keyframes confetti-fall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}

/* confetti-message  */
.confetti-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #28a745; /* A green color for positive vibes */
  font-weight: bold;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.5s ease-in-out;
  z-index: 1000; /* Above the confetti */
}

@media (max-width: 768px) {
  .confetti-message {
    font-size: 15px; /* Reduce font size on smaller screens */
  }
}

/* punter section  */
/* General Page Styling */
.punters-page {
  max-width: 90%; /* Responsive width */
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
  color: #2c7d59;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.8em;
}

/* Scrollable List */
.scrollable {
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #2c7d59 #f9f9f9;
  scroll-behavior: smooth;
}

.scrollable::-webkit-scrollbar {
  width: 8px;
}

.scrollable::-webkit-scrollbar-thumb {
  background-color: #2c7d59;
  border-radius: 10px;
}

/* List Styling */
.punter-list {
  counter-reset: punter-counter;
}

.punter-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.punter-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Numbering */
.punter-number {
  font-size: 1.2em;
  color: #555;
  margin-right: 10px;
  font-weight: bold;
  width: 30px;
}

/* Profile Image */
.punter-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #eee;
}

/* Text and Badge Styling */
.punter-info h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.punter-info p {
  margin: 5px 0 0;
  color: #777;
  font-size: 0.9em;
}

.punter-badge {
  font-size: 0.8em;
  color: #fff;
  background-color: #2c7d59;
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: auto;
}

/* Top Punters Styling */
.top-punter {
  border-left: 5px solid #ffc107;
}

.top-punter .punter-badge {
  background-color: #ffc107;
}

/* Trending Punters Styling */
.trending-punter {
  border-left: 5px solid #ff5722;
}

.trending-punter .punter-badge {
  background-color: #ff5722;
}

/* Fade-In Scroll Effect */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.punter-item {
  animation: fadeInUp 0.5s ease;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .punters-page {
      max-width: 95%;
  }
  
  h2 {
      font-size: 1.5em;
  }
  
  .scrollable {
      max-height: 400px;
  }

  .punter-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 12px;
  }

  .punter-number {
      font-size: 1em;
  }

  .punter-item img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
  }

  .punter-info h3 {
      font-size: 1em;
  }

  .punter-info p {
      font-size: 0.85em;
  }
}

@media (min-width: 1024px) {
  .scrollable {
      max-height: 600px;
  }

  .punter-item {
      padding: 20px;
  }

  .punter-info h3 {
      font-size: 1.3em;
  }

  .punter-info p {
      font-size: 1em;
  }
}


/* Win Announcement Container */
.win-announcement-container {
  overflow: hidden;
  background: linear-gradient(135deg, #f3f3f3, #e2f2e2);
  padding: 10px 0;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  white-space: nowrap;
}

/* Announcement Track for continuous scroll */
.win-announcement-track {
  display: inline-flex;
  animation: scrollWinAnnouncement 30s linear infinite; /* Adjust speed here */
  gap: 30px; /* Space between each announcement */
}

/* Individual Announcement */
.win-announcement {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

/* Punter Image */
.pun-image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 8px;
}

/* Odds Highlight */
.odds {
  color: #4caf50;
  font-weight: bold;
}

/* Continuous Scroll Animation */
@keyframes scrollWinAnnouncement {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%); /* Scroll halfway for duplicated set */
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .win-announcement {
      font-size: 14px;
      padding: 0 10px;
  }

  .pun-image {
      width: 24px;
      height: 24px;
  }
}



/* VIP Badge */
/* .vip-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FFD700;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
} */

/* Sure Badge */
.sure-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #FFEB3B;
  color: black;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  animation: glow 1.5s infinite;
}

/* Glow Effect */
@keyframes glow {
  0%, 100% {
      box-shadow: 0 0 5px #FFEB3B, 0 0 20px #FFEB3B, 0 0 30px #FFEB3B;
  }
  50% {
      box-shadow: 0 0 10px #FFEB3B, 0 0 30px #FFEB3B, 0 0 40px #FFEB3B;
  }
}

/* Live Score Ticker Container */
.live-score-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(135deg, #f3f3f3, #e2f2e2);
  padding: 10px 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.score {
  display: inline-flex;
  animation: scrollScores 15s linear infinite;
}

.score p {
  margin: 0 20px;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

/* Scrolling Animation */
@keyframes scrollScores {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .score p {
      font-size: 0.9rem;
      margin: 0 15px;
  }
}

/* punter section */
.punters-page {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
  color: #2c7d59;
  font-size: 2em;
  margin-bottom: 20px;
}

/* Trending Punter Badge Styling */
.punter-badge {
  font-size: 1em;
  font-weight: bold;
  color: white;
  background-color: #ff6f61;
  padding: 5px 10px;
  border-radius: 4px;
  position: absolute;
  right: 10px;
}

/* Punter Copy Count Styling */
.punter-info strong {
  color: #2c7d59;
}

/* Adjusted Item Styling */
.punter-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.punter-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Trending Punter Section */
.trending-punter-section {
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
  padding: 50px 20px;
  text-align: center;
  color: #333;
}

.trending-punter-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.steps-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.icon {
  font-size: 2rem;
  color: #66bb6a;
  margin-bottom: 10px;
  animation: pulse 1.5s infinite;
}

.step h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.step p {
  font-size: 0.9rem;
  color: #555;
}

.cta-button-container {
  margin-top: 30px;
}

.cta-button {
  background-color: #66bb6a;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #81c784;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* contact page  */
.con{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #b8d8ba, #76b852);
  padding: 20px;
}
.contact-container {
  max-width: 500px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
}

.contact-container h2 {
  color: #333;
  margin-bottom: 10px;
}

.contact-container p {
  color: #666;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #76b852;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: #76b852;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #5e9c41;
}

@media (max-width: 500px) {
  .contact-container {
      padding: 20px;
  }
}

/* Social Links */
.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: #e4405f; }
.social-icon.linkedin { background: #0077b5; }

.social-icon:hover {
  filter: brightness(85%);
}

.messages {
  list-style-type: none;
  padding: 0;
  margin: 1em 0;
}

.messages li {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

.messages li.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.messages li.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Donate Button Styling */
.donate-container {
  text-align: center;
  margin-top: 40px;
}

.donate-button {
  display: inline-block;
  background: linear-gradient(90deg, #28a745, #70db70);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.donate-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.4);
}

/* Glowing Effect */
.donate-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s ease;
}

.donate-button:hover::after {
  left: 100%;
}

/* Pulsing Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

.donate-button:hover {
  animation: pulse 1.5s infinite;
}


.suggestions {
  border: 1px solid #ccc;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  z-index: 1000;
  font-weight: 600;
  width: calc(100% - 2px);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.suggestion {
  padding: 8px 12px;
  cursor: pointer;
}

.suggestion:hover {
  background: #f0f0f0;
}

/* count down style  */
.countdown-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-weight: bold;
  font-size: 1rem;
  flex-wrap: wrap;
}

.countdown-label {
  color: #555;
}

.countdown-timer {
  color: #28a745; /* Bootstrap green */
  font-weight: 800;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .countdown-wrapper {
    font-size: 0.95rem;
    margin-top: 8px;
  }

  .countdown-timer {
    font-size: 1rem;
  }
}


/* refferal banner  */

.referral-banner-container {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.referral-banner {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.referral-banner:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 768px) {
  .referral-banner-container {
    margin: 20px 10px;
  }
}

/* carousel refferal  */

.betting-banner-img {
  max-height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.betting-banner-img:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 768px) {
  .betting-banner-img {
    max-height: 100px;
  }
}

/* live score  */

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes pulseTag {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}





 */
  /* modal for games details  */
  
  .loader {
    width: 22px;
    height: 22px;
    border: 3px solid #10b981; /* Tailwind green-500 */
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
  }

  .loader-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #28a745;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: auto;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .booking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  
  .booking-left {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .ball-icon {
    font-size: 16px;
    color: #4b5563;
  }
  
  .pick {
    font-weight: bold;
    color: green;
  }
  
  .booking-center {
    flex: 1;
    margin-left: 10px;
  }
  
  .teams {
    font-weight: 600;
    color: #111827;
  }
  
  .market {
    font-size: 12px;
    color: #6b7280;
  }
  
  .odds {
    font-weight: bold;
    color: #000;
  }
  
  .loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid green;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 1s linear infinite;
    margin: auto;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .modal-body {
    max-height: 70vh;
    overflow-y: auto;
  }

  .modal-analysis-header {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .verdict-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .verdict span {
    color: green;
    font-weight: bold;
  }
  
  .scorewin {
    font-size: 16px;
    color: #333;
  }
  
  .tips-list {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
    color: #444;
  }
  
  .games-header {
    margin-top: 20px;
    font-size: 18px;
    color: #222;
  }
  
  .booking-card {
    border: 1px solid #ddd;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .teams-row {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }
  
  .details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 15px;
  }
  
  .market, .pick, .odds {
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 8px;
  }
  
  .pick-badge {
    background: #f4d03f;
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
  }
  
  .odds-badge {
    background: #58d68d;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
  }
  
  /* button styling for view or breakdown  */
  .game-details-btn {
    background-color: #059669;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    margin-top: 10px;
  }
  
  .game-details-btn:hover {
    background-color: #047857;
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 576px) {
    .game-details-btn {
      font-size: 0.78rem;
      padding: 5px 10px;
    }
  }
  
#bookingFilter {
  padding: 4px 8px;
  font-size: 14px;
}

 .estimated-payout input,
  .estimated-payout select {
    font-size: 14px;
  }

  @media (max-width: 576px) {
    .estimated-payout .d-flex {
      flex-direction: column;
      align-items: stretch;
    }

    .estimated-payout input,
    .estimated-payout select {
      width: 100% !important;
    }

    .estimated-payout .payout-result {
      margin-top: 5px;
    }
  }
 .pagination-wrapper {
        margin-top: 30px;
    }
    .pagination .page-item.active .page-link {
        background-color: #28a745;
        border-color: #28a745;
        color: white;
    }
    .pagination .page-link {
        color: #28a745;
    }
    .pagination .page-link:hover {
        background-color: #218838;
        color: white;
    }



.cb-card{ border:2px solid #22c55e33; border-radius:18px; padding:16px; background:#fff; transition:box-shadow .2s, transform .1s; }
.cb-card:hover{ box-shadow:0 8px 24px rgba(0,0,0,.06); transform:translateY(-2px); }
.cb-card__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; }
.cb-brand img{ width:30px; height:30px; border-radius:8px; }
.cb-badge{ background:linear-gradient(135deg,#16a34a,#22c55e); color:#fff; font-weight:700; font-size:.75rem; padding:4px 8px; border-radius:999px; }
.cb-title{ margin:8px 0 10px; color:#065f46; font-weight:800; }
.cb-meta{ font-size:.95rem; margin-bottom:8px; }
.cb-line{ margin-bottom:4px; } .cb-line span{ color:#6b7280; margin-right:6px; }
.cb-body{ font-size:.92rem; color:#374151; min-height:2.5em; }
.cb-btn{ margin-top:8px; font-weight:700; border-radius:12px; }
.cb-footer{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; font-size:.85rem; }
.cb-media{ text-decoration:underline; color:#0ea5e9; }

 .badge-exclusive{
  display:inline-block;
  background:#111;
  color:#ffd700;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  font-size:.8rem;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  margin-bottom:8px;
}

/* Floating AI Analyzer button */
.fab-ai{
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom)); /* iOS safe area */
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.fab-badge{
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #1f9d55, #0f7d3d);
  box-shadow: 0 12px 30px rgba(31,157,85,.35);
  transform: translateZ(0);
  position: relative;
  transition: transform .12s ease, box-shadow .12s ease;
}

/* soft pulse ring to draw attention (first-time users) */
.fab-badge::after{
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(31,157,85,.35);
  animation: fabPulse 2.2s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { opacity: 0; }
}

.fab-label{
  background: #fff;
  color: #1f2a22;
  border: 1px solid #e6f4ea;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  white-space: nowrap;
}

.fab-ai:hover .fab-badge{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(31,157,85,.38);
}

/* Compact on phones: show only the round button */
@media (max-width: 575.98px){
  .fab-label{ display: none; }
  .fab-badge{ width: 58px; height: 58px; }
}

