* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 2px solid #ff5a00;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ff5a00;
  font-weight: bold;
  font-size: 22px;
}

.logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 90, 0, 0.45);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff5a00;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #ff5a00;
  color: #ffffff;
  font-size: 28px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(255, 90, 0, 0.25)),
    url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-text {
  max-width: 900px;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.55);
}

.hero-text p {
  font-size: 24px;
  max-width: 780px;
  margin: 0 auto 30px;
  color: #f5f5f5;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff5a00, #ff8c00);
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 90, 0, 0.55);
}

/* SECTIONS */
.about,
.events,
.contact {
  padding: 80px 20px;
  text-align: center;
}

.about {
  background: #111111;
}

.events {
  background: #161616;
}

.contact {
  background: #111111;
}

.about h2,
.events h2,
.contact h2 {
  font-size: 38px;
  color: #ff8c00;
  margin-bottom: 20px;
}

.about p,
.contact p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  color: #e6e6e6;
}

.event-card {
  background: #1d1d1d;
  margin: 30px auto 0;
  padding: 30px;
  max-width: 450px;
  border-radius: 15px;
  border: 1px solid #ff5a00;
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.12);
}

.event-card h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 26px;
}

.event-card p {
  font-size: 18px;
  color: #dddddd;
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px 20px;
  background: #0a0a0a;
  border-top: 2px solid #ff5a00;
  color: #cccccc;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: #111111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 90, 0, 0.3);
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 20px;
  }

  .logo {
    font-size: 18px;
    text-align: center;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
      .cta-box {
    padding: 30px 18px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-box p {
    font-size: 17px;
  }

  .footer-content h3 {
    font-size: 24px;
  }

  .footer-content p {
    font-size: 16px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 22px;
  }

  .about h2,
  .events h2,
  .contact h2 {
    font-size: 30px;
  }

  .about p,
  .contact p,
  .event-card p {
    font-size: 17px;
  }

  .event-card h3 {
    font-size: 22px;
  }
}


/* GENERAL TEXT WIDTH */
.about p,
.events p,
.contact p {
  max-width: 850px;
  margin: 0 auto 15px;
}

/* EVENTS LAYOUT */
.events {
  padding-left: 20px;
  padding-right: 20px;
}

.events .event-card {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 420px;
  margin: 20px 15px 0;
}

/* GALLERY PLACEHOLDERS */
.gallery-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.gallery-box {
  width: 280px;
  height: 200px;
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  border: 1px solid #ff5a00;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb27a;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.12);
}

/* SUPPORT SECTION */
.support-box {
  max-width: 800px;
  margin: 25px auto 0;
  padding: 30px;
  background: #1a1a1a;
  border: 1px solid #ff5a00;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.12);
}

/* CONTACT BOX */
.contact-box {
  max-width: 800px;
  margin: 25px auto 0;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 15px;
  border: 1px solid rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.08);
}

/* SECTION SPACING FOR HEADINGS */
.about h2,
.events h2,
.contact h2 {
  margin-bottom: 18px;
}

/* MOBILE */
@media (max-width: 700px) {
  .gallery-box {
    width: 100%;
    max-width: 320px;
    height: 180px;
      .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form {
    padding: 22px;
  }
  }

  .support-box,
  .contact-box {
    padding: 22px;
  }
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #111111, #191919);
  text-align: center;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 45px 30px;
  border-radius: 20px;
  background: rgba(255, 90, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.25);
  box-shadow: 0 0 25px rgba(255, 90, 0, 0.08);
}

.cta-small {
  color: #ffb27a;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cta-box h2 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #ffffff;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 19px;
  color: #e8e8e8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff8c00;
  color: #ffffff;
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.22);
}

/* FOOTER */
.footer {
  background: #080808;
  border-top: 2px solid #ff5a00;
  padding: 50px 20px 30px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-content h3 {
  font-size: 28px;
  color: #ff8c00;
  margin-bottom: 16px;
}

.footer-content p {
  color: #d7d7d7;
  font-size: 17px;
  max-width: 760px;
  margin: 0 auto 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 25px 0 18px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #ff8c00;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-social a {
  padding: 10px 16px;
  border: 1px solid rgba(255, 140, 0, 0.35);
  border-radius: 999px;
  color: #ffb27a;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 140, 0, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 10px;
}

/* CONTACT FORM */
.contact-form {
  max-width: 900px;
  margin: 30px auto 0;
  background: #151515;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 0, 0.25);
  background: #0f0f0f;
  color: #ffffff;
  font-size: 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbbbbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.15);
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 20px;
}

.contact-form .btn {
  border: none;
  cursor: pointer;
}
}

.btn-whatsapp {
  background: linear-gradient(45deg, #1faa59, #25d366);
  color: #ffffff;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.28);
}

.btn-vault {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #ffffff;
}

.btn-vault:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(37, 117, 252, 0.28);
}

.qr-box {
  margin: 20px auto;
  padding: 15px;
  background: #ffffff;
  border-radius: 12px;
  width: fit-content;
}

.qr-box img {
  width: 180px;
  height: 180px;
  display: block;
}

/* EXTRA ANDROID-FRIENDLY MOBILE IMPROVEMENTS */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .navbar {
    padding: 14px 12px;
  }

  .logo {
    gap: 8px;
    font-size: 15px;
    max-width: 80%;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    font-size: 24px;
    padding: 6px 10px;
  }

  .nav-links {
    gap: 12px;
    padding: 16px 0;
  }

  .nav-links a {
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .hero {
    min-height: 75vh;
    padding: 20px 12px;
  }

  .hero-overlay {
    padding: 22px 14px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-scripture {
    font-size: 15px;
  }

  .btn,
  .btn-outline,
  .btn-whatsapp,
  .btn-vault,
  .btn-paypal {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 14px 18px;
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about,
  .events,
  .contact,
  .cta-section {
    padding: 55px 14px;
  }

  .about h2,
  .events h2,
  .contact h2,
  .cta-box h2 {
    font-size: 26px;
  }

  .about p,
  .events p,
  .contact p,
  .cta-box p {
    font-size: 16px;
  }

  .event-card {
    margin: 16px auto 0;
    padding: 22px 16px;
  }

  .event-card h3 {
    font-size: 20px;
  }

  .gallery-box {
    height: 150px;
    font-size: 16px;
  }

  .support-box,
  .contact-box,
  .contact-form,
  .payment-info-box,
  .cta-box {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .form-row {
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 14px;
  }

  .qr-box {
    padding: 10px;
  }

  .qr-box img {
    width: 150px;
    height: 150px;
  }

  .footer {
    padding: 35px 14px 24px;
  }

  .footer-content h3 {
    font-size: 22px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a,
  .footer-social a {
    font-size: 14px;
  }
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  background: linear-gradient(45deg, #1faa59, #25d366);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 480px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* LOADER */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  padding: 20px;
}

.loader-logo {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(255, 90, 0, 0.35);
  animation: pulseLogo 1.8s infinite ease-in-out;
}

.loader-content h2 {
  color: #ff8c00;
  font-size: 28px;
  margin-bottom: 10px;
}

.loader-content p {
  color: #f2f2f2;
  font-size: 16px;
}

@keyframes pulseLogo {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.28);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(255, 90, 0, 0.48);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.28);
  }
}

@media (max-width: 480px) {
  .loader-logo {
    width: 80px;
    height: 80px;
  }

  .loader-content h2 {
    font-size: 24px;
  }

  .loader-content p {
    font-size: 15px;
  }
}

/* SERMON SECTION */
.sermon-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.sermon-card {
  width: 100%;
  max-width: 320px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.08);
}

.sermon-card h3 {
  color: #ff8c00;
  margin-bottom: 14px;
  font-size: 22px;
}

.sermon-card p {
  font-size: 16px;
  color: #e8e8e8;
  margin-bottom: 18px;
}

/* HORIZONTAL SCROLL GALLERY */
.real-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 5px 20px;
  margin-top: 30px;
  scroll-snap-type: x mandatory;
}

/* Hide scrollbar (optional but clean) */
.real-gallery::-webkit-scrollbar {
  height: 6px;
}

.real-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 0, 0.5);
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 260px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.08);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 220px;
  }
}

/* TAP TO ENLARGE GALLERY */
.gallery-preview {
  cursor: pointer;
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 4000;
}

.gallery-lightbox.show {
  display: flex;
}

.gallery-lightbox img {
  max-width: 95%;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.18);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 480px) {
  .gallery-lightbox img {
    max-width: 100%;
    max-height: 75vh;
  }

  .lightbox-close {
    top: 14px;
    right: 18px;
    font-size: 34px;
  }
}

/* COUNTDOWN TIMER */
.countdown-section {
  margin-top: 30px;
  text-align: center;
}

.countdown-section h3 {
  color: #ffb27a;
  margin-bottom: 15px;
  font-size: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.time-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 70px;
  box-shadow: 0 0 15px rgba(255, 90, 0, 0.08);
}

.time-box span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.time-box small {
  font-size: 12px;
  color: #ffb27a;
}

#sermons {
  padding: 40px;
  background: #111;
  color: white;
}

.post {
  background: #222;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
}

/* POSTS GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* POST CARD */
.post-card {
  background: linear-gradient(145deg, #1a1a1a, #000);
  border: 1px solid #ff4500;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.post-card {
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
}

/* TITLE */
.post-card h3 {
  color: #ff4500;
  margin-bottom: 10px;
}

/* DATE */
.post-card small {
  color: #ccc;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.post-card p {
  color: #eee;
  font-size: 14px;
  line-height: 1.5;
}

/* BUTTON */
.read-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff4500;
  color: white;
  text-decoration: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.read-btn:hover {
  background: #ff2200;
}

.post-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-buttons button {
  padding: 6px 12px;
  border-radius: 15px;
  border: none;
  background: #222;
  color: white;
  cursor: pointer;
}

.filter-buttons button:hover {
  background: #ff4500;
}

.search-box {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ff4500;
  outline: none;
}

.category-badge {
  background: #ff4500;
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 8px;
  font-size: 12px;
}

/* DONATION SECTION */
.donation-section {
  padding: 80px 20px;
  background: #0f0f0f;
  text-align: center;
}

.donation-intro {
  max-width: 850px;
  margin: 0 auto 30px;
  color: #e8e8e8;
  font-size: 18px;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.donation-card {
  background: linear-gradient(145deg, #141414, #050505);
  border: 1px solid rgba(255, 69, 0, 0.45);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 18px rgba(255, 69, 0, 0.12);
  transition: 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(255, 69, 0, 0.24);
}

.donation-card h3 {
  color: #ff4500;
  margin-bottom: 14px;
  font-size: 24px;
}

.donation-card p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.donation-card .btn {
  margin-top: 10px;
}

@media (max-width: 480px) {
  .donation-section {
    padding: 55px 14px;
  }

  .donation-intro {
    font-size: 16px;
  }

  .donation-card {
    padding: 18px;
  }

  .donation-card h3 {
    font-size: 21px;
  }
}

/* LIVE STREAMING PAGE */
.live-page {
  min-height: 100vh;
  background: #090909;
  color: #ffffff;
  padding: 120px 20px 60px;
}

.live-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.live-intro {
  max-width: 850px;
  margin: 20px auto;
  font-size: 18px;
  color: #e8e8e8;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 30px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 69, 0, 0.35);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: red;
  box-shadow: 0 0 10px red;
}

.live-video-box {
  margin: 30px auto;
  max-width: 950px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.35);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.15);
}

.live-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.live-card {
  background: linear-gradient(145deg, #151515, #050505);
  border: 1px solid rgba(255, 69, 0, 0.35);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 18px rgba(255, 69, 0, 0.10);
}

.live-card h3 {
  color: #ff4500;
  margin-bottom: 14px;
  font-size: 22px;
}

.live-card p {
  color: #ededed;
  margin-bottom: 10px;
  line-height: 1.6;
}

.live-card a {
  color: #ffb27a;
  text-decoration: none;
}

.live-card a:hover {
  color: #ffffff;
}

.back-home {
  margin-top: 35px;
}

@media (max-width: 600px) {
  .live-page {
    padding: 110px 14px 50px;
  }

  .live-intro {
    font-size: 16px;
  }

  .live-video-box iframe {
    height: 240px;
  }

  .live-card {
    padding: 18px;
  }
}

.live-placeholder {
  padding: 50px 25px;
  text-align: center;
  background: linear-gradient(145deg, #141414, #050505);
}

.live-placeholder h2 {
  color: #ff4500;
  margin-bottom: 18px;
  font-size: 32px;
}

.live-placeholder p {
  max-width: 760px;
  margin: 0 auto 25px;
  color: #ededed;
  line-height: 1.7;
  font-size: 17px;
}

.live-social-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.live-indicator {
  display: inline-block;
  background: red;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.5;
  }
}

/* LIVE VIDEO + CHAT LAYOUT */
.live-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
  margin: 30px auto;
  max-width: 1200px;
}

.live-chat-box {
  background: #111111;
  border: 1px solid rgba(255, 69, 0, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.12);
}

@media (max-width: 900px) {
  .live-layout {
    grid-template-columns: 1fr;
  }

  .live-chat-box iframe,
  .live-video-box iframe {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .live-chat-box iframe,
  .live-video-box iframe {
    height: 260px;
  }
}

.live-chat-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
  text-align: center;
  padding: 30px;
}

.live-chat-placeholder h3 {
  color: #ff4500;
  margin-bottom: 15px;
  font-size: 26px;
}

.live-chat-placeholder p {
  color: #ededed;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* PLATFORM SWITCHER */
.platform-switcher {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.platform-btn {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid rgba(255, 69, 0, 0.45);
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.platform-btn:hover {
  background: #ff4500;
}

.active-platform {
  background: #ff4500;
  color: #ffffff;
}

.platform-box {
  margin-top: 20px;
}
