/* ===== 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;
}
* {
    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-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
}
.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);
}
.logo img:hover {
    transform: scale(1.05);
}
/* ===== Search Bar ===== */
.search-bar {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
    flex-grow: 1;
    max-width: 500px;
}
.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 25px 0 0 25px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    outline: none;
}
.search-btn {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}
.search-btn:hover {
    background-color: #fc5000;
}
/* ===== 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: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary-color);
}
.nav-links a:hover::after {
    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;
}
/* ===== 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;
    }
}

.main-content {
    background-color: transparent;
    padding: 60px 20px;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-section {
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}
  
.review-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.review-section strong {
    color: orange;
}

.game-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
}

.game-info-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
    margin-top: 40px;
}
  
.game-info-left img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    margin-bottom: 15px;
    height: auto;
}

.games-symbols  img {
    width: 80px;
    margin: 0 5px;
    height: 100px;
    margin-top: 60px;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.star-rating {
    display: flex;
    gap: 6px;
    margin-top: 15px;
}
  
.star-rating i {
    font-size: 20px;
    color: #ffc107; /* Golden Yellow */
}
  
.rating-text {
    font-size: 14px;
    color: #ccc;
    margin-top: 15px;
}

.game-info-right {
    flex: 2;
    min-width: 300px;
}
  
.game-info-right h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    margin-top: 70px;
}

.tag-list.alt-style {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
  
.tag-list .tag {
    padding: 8px 14px;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s;
}

.tag-list .tag i {
    margin-right: 8px;
    color: orangered;
}
  
.tag-list .tag:hover {
    background-color: transparent;
    color: orangered;
}

.info-boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.info-box {
    background-color: #29293f;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.info-box h4 {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 1px;
}
  
.info-box p {
    margin: 5px 0 0;
    font-size: 18px;
    font-weight: bold;
}

.info-table {
    width: 100%;
    max-width: 800px;
    border-top: 1px solid #888;
    margin: 30px auto;
}
  
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #888;
}

.label {
    flex: 1;
    font-weight: 500;
    color: #f5c518;
}
  
.value {
    flex: 2;
    font-weight: 600;
    text-align: left;
}
  
.features {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
  
.features li {
    margin-bottom: 6px;
}
  
.language-bar {
    margin-top: 30px;
    text-align: center;
    padding: 15px 0;
}
  
.language-bar p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
  
.language-bar img {
    width: 28px;
    margin: 0 6px;
}

.boxing-king-review {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 25px;
    background-color: transparent;
    border-radius: 12px;
}
    
.boxing-king-review h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}
  
.boxing-king-review p {
    font-size: 16px;
    line-height: 1.7;
    color: white;
    margin-bottom: 30px;
}
    
.boxing-king-review a:hover {
    text-decoration: underline;
}

.image-layout {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 35px;
    padding: 0 60px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-image-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-title {
    width: 100%;
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 20px;
}

.main-image img {
    width: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 1px;
    margin-bottom: 50px;
    max-width: 100%;
    border: 1px solid #3d3d3d;
}
  
.side-images {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 50px;
  
}
  
.side-images img {
    width: 360px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}
  
/* Responsive */
@media (max-width: 768px) {
    .image-layout {
      flex-direction: column;
      align-items: center;
    }
  
    .main-image img,
    .side-images img {
      width: 100%;
      max-width: 100%;
    }
  
    .side-images {
      flex-direction: row;
      gap: 10px;
    }
}

.how-to-play-section {
    max-width: 1200px;
    margin: 0 auto;
}
  
.how-to-play-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}
  
#how-to-play-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px 25px;
    background-color: transparent;
    color: white;
    line-height: 1.8;
  }
  
  #how-to-play-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
  }
  
  #how-to-play-section p {
    font-size: 16px;
    margin-bottom: 25px;
    color: white;
  }
  
  #how-to-play-section ul {
    list-style-type: disc;
    padding-left: 40px;
  }
  
  #how-to-play-section li {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
  }
  
  #how-to-play-section a {
    color: #ff7a00;
    font-weight: 600;
    text-decoration: none;
  }
  
  #how-to-play-section a:hover {
    text-decoration: underline;
}

#tips-strategies {
    max-width: 1300px;
    margin: 50px auto;
    padding: 30px 25px;
    background-color: transparent;
    color: #f1f1f1;
    border-radius: 10px;
}

#tips-strategies h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

#tips-strategies table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
    font-size: 16px;
}

#tips-strategies th,
#tips-strategies td {
    padding: 14px 18px;
    text-align: left;
    vertical-align: top;
}

#tips-strategies thead th {
    color: #ffcc00;
    font-weight: 600;
    background-color: transparent;
}

#tips-strategies tbody tr:nth-child(even) {
    background-color: #262626;
}

#tips-strategies tbody tr:hover {
    background-color: #383838;
}
  
  /* Responsive Table */
  @media (max-width: 600px) {
    #Tips\ \&\ Strategies table,
    #Tips\ \&\ Strategies thead,
    #Tips\ \&\ Strategies tbody,
    #Tips\ \&\ Strategies th,
    #Tips\ \&\ Strategies td,
    #Tips\ \&\ Strategies tr {
      display: block;
      width: 100%;
    }
  
    #Tips\ \&\ Strategies tr {
      margin-bottom: 15px;
    }
  
    #Tips\ \&\ Strategies th {
      background-color: transparent;
      color: #ffd700;
      padding: 10px 0;
    }
  
    #Tips\ \&\ Strategies td {
      padding: 10px 0;
      border: none;
      border-bottom: 1px solid #444;
      position: relative;
    }
  
    #Tips\ \&\ Strategies td::before {
      content: attr(data-label);
      font-weight: bold;
      color: #ffcc00;
      display: block;
      margin-bottom: 5px;
    }
}
  
  

/* ===== Footer Section ===== */
.footer {
    background: #0a0a12;
    padding: 3rem 2rem 1rem;
    color: white;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-column h3 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 0.8rem;
}
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: #d4af37;
}
.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
}
.newsletter-form button {
    width: 100%;
    padding: 0.8rem;
    background: #d4af37;
    color: #1a1a2e;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.newsletter-form button:hover {
    background: #f1c40f;
}
.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 {
    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);
}
/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .news-wrapper {
        grid-template-columns: 1fr;
    }
    .news-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr 1fr;
    }
    .featured-news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .news-list {
        grid-template-columns: 1fr;
    }
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .trust-section img {
        height: 30px;
    }
}
