/* assets/css/index.css */
/* Estilos específicos para a página index */

/* Reset específico para index */
body[data-page="index"] {
    background: url('../images/background.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* Fallback para garantir que funcione */
body[data-page="index"] {
    background-image: url('../images/background.jpg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

/* Header específico para index */
body[data-page="index"] .header {
    overflow: visible !important;
    position: fixed !important;
    z-index: 1000 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Hero section com padding correto */
body[data-page="index"] .hero-section {
    padding: 5px 20px 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Outras seções */
body[data-page="index"] .features-section,
body[data-page="index"] .download-section {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

/* Garantir que o conteúdo não fique atrás do header */
body[data-page="index"] .main-content {
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Overlay de fundo */
body[data-page="index"]::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

/* Conteúdo principal */
body[data-page="index"] .hero-section,
body[data-page="index"] .features-section,
body[data-page="index"] .download-section {
    position: relative;
    z-index: 1;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    body[data-page="index"] .hero-section {
        padding: 0px 20px 0 !important;
    }
    
    body[data-page="index"] .main-content {
        margin-top: 10px;
    }
}

/* ========================================
   ESTILOS COMPLETOS DA PÁGINA INDEX
   ======================================== */

/* Hero Section Styles */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(251, 176, 52, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.particle:nth-child(2) { top: 25%; left: 15%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.particle:nth-child(4) { top: 35%; left: 30%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 75%; left: 25%; animation-delay: 2s; }
.particle:nth-child(6) { top: 30%; left: 80%; animation-delay: 2.5s; }
.particle:nth-child(7) { top: 50%; left: 85%; animation-delay: 3s; }
.particle:nth-child(8) { top: 80%; left: 70%; animation-delay: 3.5s; }
.particle:nth-child(9) { top: 65%; left: 75%; animation-delay: 4s; }
.particle:nth-child(10) { top: 40%; left: 50%; animation-delay: 4.5s; }
.particle:nth-child(11) { top: 20%; left: 60%; animation-delay: 5s; }
.particle:nth-child(12) { top: 55%; left: 45%; animation-delay: 5.5s; }
.particle:nth-child(13) { top: 10%; left: 40%; animation-delay: 6s; }
.particle:nth-child(14) { top: 85%; left: 55%; animation-delay: 6.5s; }
.particle:nth-child(15) { top: 45%; left: 12%; animation-delay: 7s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.hero-logo {
  width: 400px;
  height: 400px;
  margin-bottom: 40px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4))
            drop-shadow(0 0 16px rgba(212, 175, 55, 0.3))
            drop-shadow(0 0 24px rgba(212, 175, 55, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6))
            drop-shadow(0 0 24px rgba(212, 175, 55, 0.4))
            drop-shadow(0 0 36px rgba(212, 175, 55, 0.3))
            drop-shadow(0 0 48px rgba(212, 175, 55, 0.2));
  }
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 50px;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  justify-content: center;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #d62828, #a4161a);
  color: white;
  box-shadow: 0 5px 15px rgba(214, 40, 40, 0.4);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(214, 40, 40, 0.6);
}

.btn-secondary-hero {
  background: transparent;
  color: white;
  border: 2px solid #fbb034;
}

.btn-secondary-hero:hover {
  background: #fbb034;
  color: #000;
  transform: translateY(-3px);
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fadeInUp 1s ease-out 1s both;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fbb034;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
}

/* Features Section Styles */
.features-section {
  padding: 40px 20px 80px 20px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.features-subtitle {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 60px;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(15, 15, 15, 0.9);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: cardSlideIn 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbb034, #ff6b35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 5px 15px rgba(251, 176, 52, 0.3);
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card-description {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
}

/* Download Section Styles */
.download-section {
  padding: 80px 20px;
}

.download-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.download-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.download-subtitle {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 60px;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.download-card {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.download-header {
  text-align: center;
  margin-bottom: 40px;
}

.download-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbb034, #ff6b35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 20px rgba(251, 176, 52, 0.3);
}

.download-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-header p {
  color: #ccc;
  font-size: 16px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}

.download-btn-windows {
  background: linear-gradient(135deg, #d62828, #a4161a);
  color: white;
  box-shadow: 0 5px 15px rgba(214, 40, 40, 0.4);
}

.download-btn-windows:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(214, 40, 40, 0.6);
}

.download-btn-android {
  background: transparent;
  color: white;
  border: 2px solid #fbb034;
}

.download-btn-android:hover {
  background: #fbb034;
  color: #000;
  transform: translateY(-3px);
}

.download-btn i {
  font-size: 24px;
}

.separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.requirements-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.requirement-column {
  text-align: left;
}

.requirement-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.requirement-platform i {
  font-size: 20px;
  color: #fbb034;
}

.requirement-platform h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.requirement-list {
  list-style: none;
  padding: 0;
}

.requirement-list li {
  color: #ccc;
  margin-bottom: 8px;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.requirement-list li::before {
  content: "•";
  color: #fbb034;
  position: absolute;
  left: 0;
}

.download-instructions {
  text-align: center;
  margin-top: 30px;
}

.download-instructions p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.download-instructions a {
  color: #fbb034;
  text-decoration: none;
  font-weight: 500;
}

.download-instructions a:hover {
  text-decoration: underline;
}

/* Carrossel - Esconder em desktop */
.features-carousel {
  display: none;
}

/* Responsive Download */
@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .download-title {
    font-size: 36px;
  }
  
  .download-subtitle {
    font-size: 18px;
  }
  
  .download-card {
    padding: 30px 20px;
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 20px 0;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-logo {
    width: 260px;
    height: 260px;
    margin-bottom: 25px;
    align-self: center;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 15px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .btn-hero {
    width: 100%;
    max-width: 260px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }

  .stats-section {
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-item {
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-number {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
  }

  /* Features Section Mobile - Carrossel */
  .features-section {
    padding: 60px 15px;
  }

  .features-title {
    font-size: 32px;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .features-subtitle {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .features-grid {
    display: none; /* Esconder grid em mobile */
  }

  /* Carrossel Mobile */
  .features-carousel {
    display: block;
    position: relative;
    margin-top: 30px;
    padding: 0 5px;
  }

  .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
  }

  .carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .feature-card {
    padding: 25px 15px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(15, 15, 15, 0.9);
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .feature-card-description {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Controles do Carrossel */
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
  }

  .carousel-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .carousel-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
  }

  .carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* Indicadores */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
  }

  /* Discord Widget Tablet */
  #discord-toggle {
    width: 55px !important;
    height: 55px !important;
    bottom: 15px !important;
    right: 15px !important;
  }

  #discord-toggle img {
    width: 30px !important;
    height: 30px !important;
  }

  #discord-widget {
    width: 300px !important;
    height: 420px !important;
    bottom: 75px !important;
    right: 15px !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 15px 15px 0;
    min-height: calc(100vh - 55px);
  }

  .hero-logo {
    width: 220px;
    height: 220px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0 10px;
    max-width: 320px;
  }

  .btn-hero {
    max-width: 240px;
    padding: 12px 20px;
    font-size: 15px;
  }

  .stats-section {
    gap: 15px;
    margin-top: 20px;
    max-width: 280px;
  }

  .stat-item {
    padding: 15px 18px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 13px;
  }

  /* Features Section Mobile Small - Carrossel */
  .features-section {
    padding: 50px 10px;
  }

  .features-title {
    font-size: 28px;
    margin-bottom: 12px;
    padding: 0 5px;
  }

  .features-subtitle {
    font-size: 14px;
    padding: 0 5px;
    margin-bottom: 25px;
  }

  .features-carousel {
    margin-top: 25px;
    padding: 0 3px;
  }

  .carousel-slide {
    padding: 0 3px;
  }

  .feature-card {
    padding: 20px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .feature-card-description {
    font-size: 13px;
    line-height: 1.4;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .carousel-indicator {
    width: 6px;
    height: 6px;
  }

  /* Discord Widget Mobile */
  #discord-toggle {
    width: 50px !important;
    height: 50px !important;
    bottom: 12px !important;
    right: 12px !important;
  }

  #discord-toggle img {
    width: 28px !important;
    height: 28px !important;
  }

  #discord-widget {
    width: 280px !important;
    height: 400px !important;
    bottom: 70px !important;
    right: 12px !important;
  }
}

.requirements {
  max-width: 1200px;
  margin: 40px auto;
}
.requirements h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fbb034;
}
.requirements-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch; /* Faz todas terem a mesma altura */
}
.requirement-box {
  flex: 1 1 45%;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.requirement-box table {
  flex: 1;
}
.requirement-box th,
.requirement-box td {
  border: 1px solid #444;
  padding: 12px;
  text-align: left;
}
.requirement-box th {
  background-color: #2c2c2c;
}
.requirement-box tr:nth-child(even) {
  background-color: #1f1f1f;
}
@media (max-width: 800px) {
  .requirement-box {
    flex: 1 1 100%;
  }
}

/* Footer Styles */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fbb034;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  border-color: #fbb034;
  color: #fbb034;
  background: rgba(251, 176, 52, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 10px 15px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #fbb034;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}