/* ===== Base Styles ===== */
:root {
    --primary-color: #d4af37; /* Gold - classic casino color */
    --secondary-color: #1a1a2e; /* Dark navy */
    --accent-color: #ff3300; /* Rich red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0d0d1a;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
    --glow-primary: 0 0 20px rgba(212, 175, 55, 0.3);
    --glow-accent: 0 0 15px rgba(255, 51, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;

}
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}
/* ===== Navigation Bar ===== */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 94, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 60px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

/* ===== Search Bar ===== */
.search-bar {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
    flex-grow: 1;
    max-width: 500px;
    position: relative;
}

.search-bar::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-bar:focus-within::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color), #f1c40f);
    color: var(--text-dark);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: linear-gradient(135deg, #fc5000, #ff6600);
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}
/* ===== Navigation Links ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover::before {
    width: 100%;
}
  
  /* Sign Up Button */
  .sign-up {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
  }
  
  .sign-up:hover {
    background-color: #fc5000 ;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* ===== Mobile Menu ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}
  /* ===== Responsive Design ===== */
  @media (max-width: 1024px) {
    .navbar-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }
    
    .search-bar {
      order: 3;
      width: 100%;
      margin: 0.8rem 0;
      max-width: 100%;
    }
    
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    
    
    .nav-links.active {
      display: flex;
    }
    
    .nav-links a {
      padding: 1rem;
      width: 100%;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .sign-up {
      margin: 1rem auto;
      display: block;
      width: 80%;
    }
    
    .menu-toggle {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
    .logo img {
      height: 50px;
    }
    
    .navbar-container {
      padding: 0.5rem;
    }
  }

  .new-betting {
    background: #0d0d1a;
    padding: 25px 20px;
    font-family: Arial, sans-serif;
  }
  
  .new-betting .intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .new-betting h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .new-betting h2 {
    font-size: 1.5rem;
    color: #ff4800;
    margin-bottom: 20px;
  }
  
  .new-betting p {
    font-size: 1rem;
    color: #eeeeee;
    line-height: 1.6;
  }
  
  .new-betting .disclaimer {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #e7e7e7;
  }
  
  .new-betting h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .betting-slider {
    justify-content: center;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    flex-wrap: wrap;
  }
  .betting-slider::-webkit-scrollbar {
    display: none; /* Chrome */
  }
  
  .betting-card {
    min-width: 140px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
  }
  
  .betting-card img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 20%;
  }
  
  .betting-card h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .bet-btn {
    background: #ff3300;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none !important;
  }
  .bet-btn:hover {
    background: #0077cc;
  }
  
  @media (max-width: 600px) {
    .new-betting h1 {
      font-size: 1.8rem;
    }
    .betting-card {
      min-width: 120px;
      padding: 10px;
    }
    .betting-card img {
      width: 50px;
      height: 50px;
    }
  }

  .sportsbook-section {
    padding: 20px 20px;
    background: #1a1a38;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;

  }
  
  .filter-wrap {
    font-weight: bold;
    font-size: 1rem;
  }
  
  #sortSelect {
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  
  .sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 10px;
    padding: 20px 0;
  }
  
  .sportsbook-card {
    background: #160c0c;
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgb(255, 94, 0);
    transition: transform 0.2s ease; box-shadow: 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .sportsbook-card:hover {
    transform: translateY(-6px);
    box-shadow: transform 0.2s ease; box-shadow: 0 4px 8px rgb(255, 94, 0);
  }
  
  .sportsbook-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  
  .rating {
    color: #2e9e5b;
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px ;
  }
  
  .sportsbook-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 10px 20px 20px;
    color: #ffffff;
  }
  
  .bet-btn {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
  }
  
  .bet-btn:hover {
    background: var(--primary-color);
  }
  
  
  @media (max-width: 600px) {
    .section-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .filter-wrap {
      margin-bottom: 10px;
    }
  }
  

/* Layout Wrapper */
.toc-section {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
  }
  
  /* Sidebar */
  .toc-sidebar {
    width: 220px;
    position: sticky;
    top: 100px;
  }
  
  .toc-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .toc-sidebar ul {
    list-style: none;
    padding-left: 0;
    border-left: 3px solid #ffffff;
  }
  
  .toc-sidebar li {
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
  }
  
  .toc-sidebar li.active,
  .toc-sidebar li:hover {
    border-left: 3px solid #ff6600;
    font-weight: bold;
  }
  
  .toc-sidebar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  /* Main Content */
  .toc-content {
    flex: 1;
    max-width: 800px;
  }
  
  .toc-content section {
    margin-bottom: 40px;
  }
  
  .toc-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6600;
  }
  
  .toc-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fcfcfc;
    margin-bottom: 15px;
  }
  
  .toc-content img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .toc-section {
      flex-direction: column;
    }
  
    .toc-sidebar {
      width: 100%;
      position: relative;
      top: unset;
      margin-bottom: 30px;
    }
  
    .toc-sidebar ul {
      border-left: none;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .toc-sidebar li {
      padding-left: 0;
      border-left: none;
    }
  }
  .faq-section {
    background: #f5f5f5;
    padding: 50px 20px;
  }
  
  .faq-container {
    max-width: 900px;
    background: #fff;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  }
  
  .faq-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #111;
  }
  
  .faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-container {
      padding: 20px;
    }
  
    .faq-container h2 {
      font-size: 1.5rem;
    }
  
    .faq-item h3 {
      font-size: 1.1rem;
    }
  
    .faq-item p {
      font-size: 0.95rem;
    }
  }
  
  /* ===== Footer Section ===== */
.footer {
  background: #0a0a12;
  padding: 3rem 2rem 1rem;
  color: white;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* === Footer Links === */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #d4af37;
}

/* === Newsletter Signup Form === */
.newsletter-form input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.newsletter-form button {
  width: 100%;
  padding: 0.75rem;
  background: #d4af37;
  color: #1a1a2e;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #f1c40f;
}

/* === Trust Badges === */
.trust-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.trust-section img {
  height: 40px;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.trust-section img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* === Copyright & Bottom Section === */
.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom h3 {
  color: var(--primary-color, #d4af37);
  font-size: 1.1rem;
  margin: 0.5rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
  color: var(--primary-color, #d4af37);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: #ffc107;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .news-wrapper {
    grid-template-columns: 1fr;
  }
  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .news-list,
  .featured-news-grid,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .news-list,
  .featured-news-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .trust-section img {
    height: 30px;
  }
}
