/* === Base Setup === */
body {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    background-color: #0e0e0e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Glowing Gradient Text === */
.gradient-text {
    background: linear-gradient(90deg, #ff0066, #ffcc00, #00ffcc);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === Header === */
.header {
    background-color: #111;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #222;
    animation: fadeInDown 0.8s ease both;
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    gap: 10px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    background: linear-gradient(45deg, #ff0066, #ffcc00);
    color: #000;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #ccc;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #ffcc00;
    transition: 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* === Buttons === */
.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #ff0066, #ffcc00);
    color: #000;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background: #222;
    color: #ffcc00;
    border: 1px solid #333;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

/* === Hero Section === */
.hero {
    background: radial-gradient(circle at top, #1a1a1a, #0e0e0e);
    padding: 80px 0;
    animation: fadeIn 1s ease both;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-description {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    color: #ffcc00;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

.hero-buttons {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: #aaa;
}

.indicator {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.indicator span {
    margin-right: 8px;
}

/* === Jackpot Badge === */
.jackpot-badge {
    background: #1a1a1a;
    border-left: 4px solid #ff0066;
    padding: 15px 25px;
    border-radius: 6px;
    text-align: center;
    animation: pulseGlow 2s infinite;
    margin-top: 30px;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255, 0, 102, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 102, 0.4); }
    100% { box-shadow: 0 0 10px rgba(255, 0, 102, 0.2); }
}

.jackpot-label {
    font-size: 0.9rem;
    color: #ff0066;
    font-weight: bold;
}

.jackpot-amount {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffcc00;
}

/* === About Section === */
.about {
    background: #111;
    padding: 80px 0;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.about-description,
.about-sub-description {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 1rem;
}

.achievement-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.achievement {
    background: #1c1c1c;
    padding: 20px 30px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    transition: all 0.3s;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.achievement-number {
    font-size: 1.6rem;
    color: #ffcc00;
    font-weight: bold;
}

.achievement-label {
    color: #aaa;
    font-size: 0.9rem;
}

/* === Responsive Mobile === */
@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
    }
}

/* === Games Section === */
.games {
    background-color: #0f0f0f;
    padding: 80px 0;
    color: #f0f0f0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1rem;
    color: #bbb;
}

/* === Filters === */
.game-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.game-filter {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.game-filter:hover,
.game-filter.active {
    background: linear-gradient(45deg, #ff0066, #ffcc00);
    color: #000;
}

/* === Games Grid === */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.game-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s;
}

.game-card:hover .game-thumb {
    transform: scale(1.1);
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.game-category {
    font-size: 0.85rem;
    color: #ccc;
}

/* === CTA === */
.games-cta {
    text-align: center;
}

.btn-primary.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px;
}

.games-note {
    margin-top: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

/* === WHY CHOOSE US Section === */
.why-choose {
    background-color: #111;
    padding: 80px 0;
    color: #f0f0f0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid #2c2c2c;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-desc {
    font-size: 0.95rem;
    color: #ccc;
}

/* === Trust Section === */
.trust-section {
    background-color: #161616;
    padding: 40px 30px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.trust-left h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background-color: #222;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #ffcc00;
    border: 1px solid #444;
}

.trust-center {
    flex: 1;
    text-align: center;
}

.trust-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f0;
}

.trust-label {
    font-size: 0.9rem;
    color: #bbb;
}

.trust-right h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Button Style (reuse your theme) */
.btn-primary {
    background: linear-gradient(45deg, #ff0066, #ffcc00);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.85;
}

/* === Latest Betting Section === */
.latest-betting {
  background: #121212;
  padding: 80px 0;
  color: #f0f0f0;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.live-text {
  color: red;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
}

.betting-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}

.live-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #222;
  border: 2px solid #ffcc00;
  color: #ffcc00;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.live-toggle:hover {
  background-color: #333;
}

.live-toggle.active {
  background-color: #ffcc00;
  color: #000;
}

.toggle-dot {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
}

.update-info {
  font-size: 0.9rem;
  color: #aaa;
}

.betting-table {
  margin-top: 30px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 12px 20px;
  align-items: center;
}

.table-header {
  background: #222;
  color: #ffcc00;
  font-weight: bold;
}

.table-body {
  background-color: #181818;
  max-height: 320px;
  overflow-y: auto;
}

.table-row {
  border-top: 1px solid #2d2d2d;
  transition: background 0.3s;
}

.table-row:hover {
  background: #1e1e1e;
}

.betting-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.betting-stat {
  flex: 1;
  min-width: 220px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2c2c2c;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.betting-stat h3 {
  color: #0f0;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.betting-stat p {
  color: #bbb;
  font-size: 0.95rem;
}

/* === Testimonials Section === */
.testimonials {
  background: #101010;
  color: #f2f2f2;
  padding: 80px 0;
  position: relative;
}

.testimonial-main {
  max-width: 700px;
  margin: 40px auto 20px;
  text-align: center;
  padding: 30px;
  background: #181818;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
  position: relative;
  min-height: 180px;
  transition: all 0.6s ease;
}

.testimonial-main .quote {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-main .author {
  font-weight: bold;
  font-size: 1rem;
  color: #ffcc00;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots .dot.active {
  background: #ffcc00;
  transform: scale(1.4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #2c2c2c;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonial-card .author {
  font-weight: bold;
  font-size: 0.9rem;
  color: #ffcc00;
}

.testimonial-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 20px;
}

.testi-stat {
  flex: 1;
  min-width: 180px;
  text-align: center;
  background: #181818;
  border: 1px solid #2d2d2d;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.05);
}

.testi-number {
  font-size: 1.6rem;
  color: #0f0;
  margin-bottom: 5px;
}

.testi-label {
  font-size: 0.9rem;
  color: #aaa;
}


/* === Contact Section === */
.contact {
  background: #121212;
  color: #f0f0f0;
  padding: 80px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffcc00;
}

.contact .section-description {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

/* Form Section */
.contact-form-section {
  flex: 1 1 450px;
  background: #1c1c1c;
  padding: 30px 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
}

.contact-form-section h3 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #ddd;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #222;
  color: #eee;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffcc00;
  background: #1a1a1a;
}

.btn-primary.btn-full {
  margin-top: 15px;
  padding: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  background: #ffcc00;
  color: #121212;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary.btn-full:hover {
  background: #e6b800;
}

/* Contact Info Section */
.contact-info-section {
  flex: 1 1 350px;
  background: #1c1c1c;
  padding: 30px 25px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
}

.contact-info-section h3 {
  color: #ffcc00;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #ddd;
}

.contact-info-item span.icon {
  font-size: 1.5rem;
  color: #ffcc00;
}

/* Confirmation message */
.confirmation-message {
  margin-top: 15px;
  background: #264d00;
  border: 1px solid #80b918;
  color: #d9f99d;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 35px;
  }
}

/* === Footer Section === */
.footer {
  background-color: #121212;
  color: #ccc;
  padding: 60px 20px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 2px solid #ffcc00;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-brand {
  flex: 1 1 350px;
  max-width: 450px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #ffcc00;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-brand .logo-icon {
  background: #ffcc00;
  color: #121212;
  font-weight: 900;
  font-size: 1.5rem;
  padding: 10px 16px;
  border-radius: 8px;
  user-select: none;
}

.footer-brand .footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #ddd;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: #bbb;
}

.footer-contact .contact-item span {
  margin-right: 8px;
  font-size: 1.2rem;
  color: #ffcc00;
  user-select: none;
}

/* Footer Links */
.footer-links {
  flex: 1 1 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links-column {
  flex: 1 1 150px;
}

.footer-links-column h4 {
  color: #ffcc00;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column ul li {
  margin-bottom: 10px;
}

.footer-links-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 30px 0 40px;
  border-bottom: 1px solid #333;
}

.newsletter-left {
  flex: 1 1 350px;
  color: #ddd;
}

.newsletter-left h3 {
  color: #ffcc00;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.newsletter-left p {
  font-size: 1rem;
  line-height: 1.5;
}

.newsletter-right {
  flex: 1 1 300px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter-right input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #222;
  color: #eee;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-right input[type="email"]::placeholder {
  color: #888;
}

.newsletter-right input[type="email"]:focus {
  outline: none;
  border-color: #ffcc00;
  background: #1a1a1a;
}

.newsletter-right .btn-primary {
  padding: 14px 22px;
  background: #ffcc00;
  color: #121212;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.newsletter-right .btn-primary:hover {
  background: #e6b800;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 25px;
  font-size: 0.9rem;
  color: #888;
  align-items: center;
}

.footer-bottom .copyright p {
  margin: 3px 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
  user-select: none;
  text-decoration: none;
}

.social-link:hover {
  color: #ffcc00;
}

.trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background-color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffcc00;
  user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-newsletter {
    flex-direction: column;
    gap: 20px;
  }
  .newsletter-right {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

