/* ===== 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;
    }
  }


  
  /* ==== REVIEW LAYOUT WRAPPER ==== */
.review-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;

}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #f1f4f8;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  gap: 10px;
}

.tabs-nav button {
  background-color: #e6e9ef;
  border: none;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.tabs-nav button:hover {
  background-color: #d3dee9;
  transform: translateY(-1px);
}

.tabs-nav button.active {
  background-color: #4caf50;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-section {
  display: none;
}
.tab-section.active {
  display: block;
}

@media (max-width: 600px) {
  .tabs-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .tabs-nav button {
    width: 100%;
    text-align: center;
  }
}


/* ==== FIXED LEFT SIDEBAR ==== */
.review-sidebar {
  width: 300px; /* Fixed width */
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #ff5e00;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.review-sidebar h2 {
  font-size: 1.2rem;
  color: #000;
  margin-top: 15px;
  margin-bottom: 10px;
}

.casino-logo {
  width: 100%;
  height: 160px;
  object-fit: cover;
border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 0;
  border: 2px solid #dddddd;
  border-color: #4caf50;
}

.safety-score {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.safety-score .score {
  font-size: 1.4rem;
  background: #4caf50;
  color: white;
  padding: 10px 14px;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 10px;
}

.safety-score .score-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.feedback {
  margin-bottom: 10px;
}

.visit-btn, .alt-btn {
  display: block;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 10px;
  text-decoration: none;
}
.visit-btn {
  background: #4caf50;
  color: white;
}
.alt-btn {
  background: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 15px;
}
.payment-icons img {
  width: 42px;
  height: auto;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  border: 1px solid #ddd;
}

.review-sidebar p,
.review-sidebar h4 {
  font-size: 0.95rem;
  margin: 5px 0;
  color: #333;
}

/* ==== HOVER EFFECTS FOR UI/UX ==== */

/* Visit Button */
.visit-btn:hover {
  background: #388e3c;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

/* Alt Button */
.alt-btn:hover {
  background: #e0e0e0;
  color: #000;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

/* Payment Icons */
.payment-icons img:hover {
  border-color: #4caf50;
  transform: scale(1.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Casino Logo */
.casino-logo:hover {
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  transition: all 0.3s ease;
}

/* Sidebar Card Hover (if clickable in future) */
.review-sidebar:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}


/* ============ MOBILE RESPONSIVE SIDEBAR ============ */
@media (max-width: 768px) {
  .review-layout {
    flex-direction: column;
    padding: 15px;
  }

  .review-sidebar {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
  }

  .review-sidebar h2 {
    text-align: center;
    font-size: 1.2rem;
  }

  .casino-logo {
    max-height: 60px;
    margin: 0 auto 10px;
    display: block;
  }

  .safety-score {
    justify-content: center;
    flex-direction: row;
    text-align: center;
  }

  .safety-score .score {
    font-size: 1.4rem;
    padding: 8px 12px;
    margin-right: 8px;
  }

  .visit-btn,
  .alt-btn {
    font-size: 1rem;
    padding: 12px;
  }

  .payment-icons {
    justify-content: center;
  }

  .payment-icons img {
    width: 40px;
  }

  .review-sidebar p,
  .review-sidebar h4 {
    text-align: center;
    font-size: 0.95rem;
  }
}


/* ==========================
   RIGHT CONTENT STYLING
   ========================== */

   .review-main {
    flex: 2;
    background: #000000;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
  }
  
  .review-main h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ff3c00;
  }
  
  .review-main p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .review-main a.review-process-link {
    color: #2e9e5b;
    font-weight: bold;
    text-decoration: none;
  }
  
  .read-more a {
    color: green;
    font-size: 0.95rem;
    font-weight: bold;
  }
  
  .section-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
  }
  
  .section-box {
    flex: 1 1 45%;
    background: #1a1a2e;
    border: 1px solid #ff5100;
    border-radius: 10px;
    padding: 20px;
    min-width: 280px;
  }
  
  .bonus-item .no-bonus {
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .deposit-bonus {
    background: #929191;
    border-left: 4px solid #4caf50;
    padding: 10px;
    font-weight: bold;
  }
  
  .bonus-link {
    color: #0073e6;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 5px;
  }
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 0.95rem;
  }
  
  .language-list,
  .info-box ul {
    padding-left: 18px;
    margin: 10px 0;
  }
  
  .related-casinos {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .related-card {
    flex: 1;
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
  }
  
  .screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .screenshots img {
    width: calc(33.333% - 10px);
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ff0000;
  }
  
  .info-columns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .info-box {
    flex: 1 1 300px;
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffe600;
  }
  
  .info-box h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #ff5e00;
  }

  .faq-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    text-align: center;
}

.faq-section details {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.faq-section details[open] {
    border-color: #3498db;
    background-color: white;
}

.faq-section summary {
    padding: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.2s ease;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section summary:after {
    content: "+";
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-section details[open] summary:after {
    content: "−";
    transform: rotate(180deg);
}

.faq-section summary:hover {
    background-color: #f0f0f0;
}

.faq-section p {
    padding: 1rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 5px 5px;
}

/* Animation for opening/closing */
.faq-section details[open] p {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


  
  /* ======= RIGHT CONTENT MOBILE RESPONSIVE ======= */
@media (max-width: 768px) {
  .review-main {
    padding: 20px 15px;
  }

  .review-main h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .review-main p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .section-columns {
    flex-direction: column;
  }

  .section-box {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr); /* Stack games 2 per row */
    font-size: 0.9rem;
  }

  .related-casinos {
    flex-direction: column;
  }

  .related-card {
    width: 100%;
  }

  .screenshots {
    flex-direction: column;
  }

  .screenshots img {
    width: 100%;
  }

  .info-columns {
    flex-direction: column;
    gap: 15px;
  }

  .info-box {
    width: 100%;
  }

  .bonus-link {
    font-size: 0.85rem;
  }

  .language-list,
  .info-box ul {
    padding-left: 15px;
  }

  .read-more a {
    font-size: 0.9rem;
  }
}

.bonus-card {
  display: flex;
  flex-wrap: wrap;
  background: #1e1e2f;
  border: 2px solid #2e2e40;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  gap: 20px;
  color: #fff;
}

.bonus-left {
  flex: 1 1 60%;
}

.bonus-left h2 {
  color: #00ff88;
  margin-bottom: 10px;
}

.bonus-details {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.bonus-details li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

.terms-link a {
  color: #00aaff;
  text-decoration: underline;
}

.bonus-right {
  flex: 1 1 35%;
  background: #2e2e40;
  padding: 20px;
  border-radius: 10px;
}

.bonus-action-box h3 {
  margin-top: 0;
  color: #ffcc00;
}

.get-bonus-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #00c853;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}


.get-bonus-btn:hover {
  background-color: #00e676;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 200, 83, 0.5);
}

.bonus-feedback {
  margin-top: 20px;
}

.vote-btn {
  background: #444;
  border: none;
  padding: 8px 12px;
  color: #fff;
  margin-right: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.vote-btn:hover {
  background: #666;
}

@media (max-width: 768px) {
  .bonus-card {
    flex-direction: column;
  }
}

/* ==== REVIEW SUMMARY STYLING ==== */
.review-summary {
  background: #1f1f2f;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.feedback-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-score {
  color: #00e676;
  font-weight: bold;
  font-size: 20px;
}

.review-count {
  color: #ccc;
  font-size: 14px;
}

.review-bar-wrapper {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 20px;
  margin-bottom: 20px;
  align-items: center;
}

.bar-label {
  font-size: 14px;
  color: #bbb;
  text-align: right;
}

.bar {
  height: 10px;
  border-radius: 6px;
}

.bar.positive { background-color: #4caf50; }
.bar.good { background-color: #8bc34a; }
.bar.neutral { background-color: #ffeb3b; }
.bar.bad { background-color: #ff9800; }
.bar.terrible { background-color: #f44336; }

.write-review-btn {
  background: #8000ff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.write-review-btn:hover {
  background-color: #a259ff;
  transform: scale(1.05);
}

/* ==== REVIEW FORM ==== */
.review-form-container {
  background: #1f1f2f;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  color: #fff;
}

.review-form-container h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

#reviewForm input,
#reviewForm textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
  background: #333;
  color: #fff;
  font-size: 15px;
}

#reviewForm textarea {
  resize: vertical;
  min-height: 100px;
}

#reviewForm button {
  background-color: #8000ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

#reviewForm button:hover {
  background-color: #a259ff;
}

/* ==== INDIVIDUAL REVIEWS ==== */
.user-review {
  display: flex;
  align-items: flex-start;
  background: #29293d;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: #fff;
  gap: 15px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  animation: fadeIn 0.4s ease forwards;
}

.user-review:hover {
  box-shadow: 0 0 12px rgba(128, 0, 255, 0.3);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.badge {
  background: #00aaff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  margin-left: 5px;
}

.time {
  font-size: 12px;
  color: #ccc;
}

.review-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
}

.vote-bar {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

/* ==== MOBILE RESPONSIVENESS ==== */
@media (max-width: 600px) {
  .review-bar-wrapper {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bar-label {
    text-align: left;
  }

  .user-review {
    flex-direction: column;
  }

  .user-info {
    margin-bottom: 10px;
  }
}

/* === SAFETY SECTION STYLING === */
#safety {
  padding: 40px 20px;
  color: #fff;
  background: #14141f;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  line-height: 1.6;
  font-size: 16px;
}

/* Heading */
#safety h1 {
  color: #ff3c00;
  font-size: 26px;
  margin-bottom: 20px;
}

/* Score block */
.safety-card {
  background: #1f1f2f;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
  border-left: 5px solid #00e676;
}

.safety-score-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.safety-icon {
  font-size: 28px;
  background: #2d2d3a;
  padding: 12px;
  border-radius: 50%;
  color: #00e676;
}

.safety-score-text .score-label {
  font-size: 14px;
  color: #bbb;
  margin: 0;
}

.safety-score-text .score-value {
  font-size: 18px;
  font-weight: bold;
  color: #00e676;
}

.safety-explanation ul {
  padding-left: 20px;
  margin: 0;
}

.safety-explanation li {
  padding: 6px 0;
  color: #e0e0e0;
}

/* === Submit Complaint CTA === */
.safety-cta {
  margin: 25px 0;
  background: #1f1f2f;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.submit-complaint-btn {
  margin-top: 10px;
  background: #ffa000;
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-complaint-btn:hover {
  background: #ffc107;
}

/* === Complaint Form === */
.complaint-form-container {
  background: #1f1f2f;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.complaint-form-container input,
.complaint-form-container textarea {
  width: 100%;
  padding: 12px;
  background: #2a2a3b;
  border: none;
  border-radius: 6px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
}

.complaint-form-container button {
  background-color: #ffa000;
  color: #000;
  padding: 10px 18px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* === Other Factors Box === */
.other-factors {
  background: #2e2e3e;
  padding: 15px 20px;
  border-left: 5px solid #f44336;
  border-radius: 8px;
  margin: 20px 0;
}

.other-factors h3 {
  color: #ff4f4f;
  margin-bottom: 8px;
  font-size: 17px;
}

.other-factors .highlight {
  color: #ff5252;
  font-weight: bold;
}

/* === Complaints Section === */
.complaints h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ddd;
}

.complaint-stats {
  font-size: 14px;
  color: #ccc;
  background: #1f1f2f;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.complaint-box {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.complaint-box.resolved {
  background-color: #2e2e3e;
  border-left: 5px solid #4caf50;
  color: #c8f7dc;
}

.complaint-box.pending {
  background-color: #2e2e3e;
  border-left: 5px solid #ffa000;
  color: #fff4cc;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .safety-card, .safety-score-box {
    flex-direction: column;
    align-items: flex-start;
  }
}


#discussion {
  padding: 30px 20px;
  background: #14141f;
  border-radius: 12px;
  color: #fff;
}

#discussion h1 {
  font-size: 24px;
  color: #00e676;
  margin-bottom: 10px;
}

#discussion p {
  color: #ccc;
  margin-bottom: 20px;
}

/* Form */
.discussion-form {
  margin-bottom: 25px;
  background: #1f1f2f;
  padding: 20px;
  border-radius: 10px;
}

.discussion-form input,
.discussion-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #29293d;
  color: #fff;
  border: none;
  border-radius: 6px;
}

.discussion-form button {
  background: #00e676;
  color: #000;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.discussion-form button:hover {
  background: #00ff90;
}

/* Threads */
.discussion-threads {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.discussion-post {
  display: flex;
  background: #1f1f2f;
  padding: 15px;
  border-radius: 8px;
}

.avatar {
  background: #4caf50;
  color: #fff;
  font-weight: bold;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 15px;
}

.post-content {
  flex: 1;
}

.user-meta {
  font-size: 14px;
  margin-bottom: 5px;
  color: #ccc;
}

.user-meta .badge {
  background: #007bff;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 5px;
}

.time {
  font-size: 12px;
  color: #888;
  margin-left: 8px;
}

.post-content p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 6px;
}

.post-actions {
  font-size: 14px;
  color: #aaa;
}

#payments {
  padding: 30px 20px;
  background: #0e0e16;
  border-radius: 12px;
  color: #fff;
  margin-top: 30px;
}

#payments h1 {
  font-size: 26px;
  color: #00e676;
  margin-bottom: 8px;
}

#payments p {
  color: #bbb;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Payment Grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  background: #1a1a2b;
  padding: 25px;
  border-radius: 12px;
}

/* Payment Item Card */
.payment-item {
  background: #24243a;
  padding: 20px 10px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 128, 0.04);
}

.payment-item:hover {
  transform: scale(1.05);
  background-color: #2e2e4a;
  box-shadow: 0 0 15px rgba(0, 255, 128, 0.1);
}

.payment-item img {
  max-width: 70px;
  max-height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
}

.payment-item a {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #00e676;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.payment-item a:hover {
  color: #00ff90;
}
