/* Reset e configuraÃ§Ãµes globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #00ff99 #0b0f1a;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #ffffff;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Scrollbar (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0b0f1a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ff99, #00cc77);
  border-radius: 10px;
  border: 2px solid #0b0f1a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00e68a, #009966);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 40px;
    width: fit-content;
    margin: 20px auto;
    z-index: 100;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    gap: 10px;
}

.logo-img {
  width: 160px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar .links {
    display: flex;
    gap: 25px;
    margin-left: 40px;
    margin-right: 40px;
}

.navbar .links a {
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.navbar .links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00ff99;
    transition: width 0.3s;
}

.navbar .links a:hover {
    color: #fff;
}

.navbar .links a:hover::after {
    width: 100%;
}


/* --- Hero Section --- */


.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
.hero-content h1, .hero-content p {
    opacity: 0;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
   
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ccc;

}


/* BotÃµes */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.navbar .btn {
    background: #00ff99;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.navbar .btn:hover {
    background: #00cc77;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 255, 153, 0.3);
}

.btn-primary {
    background: #00ff99;
    color: #000;
}

.btn-primary:hover {
    background: #00cc77;
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 15px 35px;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* --- Footer --- */
.footer {
    padding: 50px 0;
    background-color: #000;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #a0a0a0;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #00ff99;
    transform: translateY(-3px);
}

.footer-copyright {
    color: #a0a0a0;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 30px;
}


/* VÃ­deo de fundo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
    border-radius: 2px;
}

/* --- Responsive Styles --- */
/* Reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root{
  --nav-bg: rgba(10,10,10,0.6);
  --nav-blur: 8px;
  --accent: #00ff99;
  --text: #e6e6e6;
  --radius-lg: 30px;
  --radius-md: 20px;
  --transition-fast: 180ms;
  --transition-medium: 300ms;
}

/* --- Navbar base --- */
.navbar{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: transparent;
  position: relative;
  z-index: 60;
}

/* Logo */
.logo-img{
  display: block;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Links container (desktop) */
.navbar .links{
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Link style */
.navbar .links a{
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  position: relative;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}
.navbar .links a::after{
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width var(--transition-medium);
  margin-top: 6px;
}
.navbar .links a:hover::after{
  width: 55%;
}

/* Hamburger (hidden em desktop) */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 80;
}
.hamburger:focus{ outline: 2px solid rgba(255,255,255,0.08); outline-offset: 2px; }

/* HambÃºrguer - barras */
.hamburger .bar{
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
  transform-origin: center;
}

/* Estado ativo (JS deve alternar .active em .hamburger e em .links) */
.hamburger.active .bar:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2){
  opacity: 0;
  transform: translateX(-6px);
}
.hamburger.active .bar:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile menu (inicial escondido) --- */
.navbar .links.mobile {
  /* estilo base para quando convertermos para menu mobile (caso precise) */
}

/* --- Responsive styles --- */
@media (max-width: 768px) {
  .navbar{
    width: 90%;
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    align-items: center;
  }

  /* mostra o hamburger */
  .hamburger{
    display: flex;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(2px);
  }

  /* transforma o container de links em um painel full-screen */
  .navbar .links{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    gap: 0;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(var(--nav-blur));
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-medium) ease-in-out, opacity var(--transition-medium);
    transform: translateX(-100%); /* escondido */
    opacity: 0;
    padding: 40px 20px;
    z-index: 70;
    pointer-events: none; /* evita cliques enquanto escondido */
  }

  /* quando ativado (JS adiciona .active na .links) */
  .navbar .links.active{
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar .links a {
    padding: 20px 18px;
    width: 100%;
    text-align: center;
    font-size: 1.45rem;
    display: block;
  }

  .navbar .links a:hover::after {
    width: 40%;
  }

  .logo-img {
    width: 120px;
  }

  .hero-content h1 {
    font-size: clamp(1.9rem, 5vw, 2.5rem);
  }

  .hero-content p {
    font-size: clamp(1rem, 3.2vw, 1.15rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 80%;
    max-width: 320px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Extra pequeno (<=480) */
@media (max-width: 480px) {
  .navbar{
    border-radius: var(--radius-md);
    padding: 8px 14px;
  }

  .logo-img{
    width: 100px;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .hero-content p {
    font-size: clamp(0.95rem, 3.8vw, 1rem);
  }

  .navbar .links a {
    padding: 18px 12px;
    font-size: 1.25rem;
  }
}

/* Accessibility: respeitar preferÃªncia por reduzir animaÃ§Ãµes */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* --- Modal --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #1a1a1a;
  margin: auto;
  padding: 25px;
  border: 1px solid #333;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: slide-down 0.4s ease-out;
  position: relative;
}

@keyframes slide-down {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #00ff99;
}

.modal-body {
  padding: 20px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.modal-body strong {
  color: #00ff99;
}

.modal-footer {
  padding-top: 15px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: center;
}

.close {
  position: absolute;
  top: 12px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close:hover {
  background: #e63946;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.5);
}

/* --- Features Section --- */
.features-section {
    padding: 80px 0;
    background-color: #0f0f0f;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 153, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #00ff99;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -10px;
  margin-bottom: 50px;
  font-weight: 300;
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8a2be2, #ff00ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8a2be2, #ff00ff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Stats Section */
.stats-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
  position: relative;
}

.stats-title {
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8a2be2, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
}

.stat-icon i {
  font-size: 24px;
  color: #fff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8a2be2, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
}

.scroll-down-indicator a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: block;
}
/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
}

.scroll-down-indicator a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: block;
}

.scroll-down-indicator a:hover {
    color: #00ff99;
    transform: scale(1.1);
}

.scroll-down-indicator i {
  animation: gentle-bounce 2.5s infinite;
  text-shadow: 0 0 15px rgba(0, 255, 153, 0.5);
}

@keyframes gentle-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* screenshots-section Section */
.screenshots-section{
  background: black;
}
.creenshots-section {
  padding: 80px 20px;
}

.creenshots-section-container {
  max-width: 800px;
  margin: 0 auto;
}

.creenshots-section-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1,
.hero-content p {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
/* --- FAQ Section --- */
/* FAQ Section */
.faq-section {
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
  border-color: #00ff99;
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #00ff99;
}

.faq-question span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question i.fa-question-circle {
  color: #00ff99;
  font-size: 20px;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #00ff99;
  font-size: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}
/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.9)), url('../images/background.png') no-repeat center center/cover;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #00ff99;
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 255, 153, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 255, 153, 0.3);
}

.cta-note {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #009966 0%, #009966 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #009966;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 30px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Footer Brand */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 32px;
  background: linear-gradient(135deg, #009966, #009966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-link:hover {
  background: linear-gradient(135deg, #056142, #009966);
  border-color: transparent;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #00ff99;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #04724d;
  transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #04724d;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-button {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #04724d, #049c6a);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px #04724d;
}

/* Footer Bottom */
.footer-bottom {
  /* padding-top: 30px; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-credits i {
  color: #ff00ff;
  animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}

/* Decorative Elements */
/* Footer */
.footer {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  /* margin-top: 100px; */
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.footer-wave svg {
  /* display: block; */
  /* width: 100%; */
  /* height: 120px; */
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

/* Brand Section */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-section {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.footer-logo-icon i {
  font-size: 24px;
  color: #fff;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 12px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* Links Section */
.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #ff6b35;
  transform: translateX(3px);
}

/* Social Section */
/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Brand Section */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  /* width: 50px; */
  /* height: 50px; */
  /* background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%); */
  /* border-radius: 14px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5); */
  /* animation: glow-pulse 3s ease-in-out infinite; */
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
  }
  50% {
    box-shadow: 0 8px 40px rgba(138, 43, 226, 0.8);
  }
}

.footer-logo-icon i {
  font-size: 26px;
  color: #fff;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  position: relative;
}

.social-tooltip {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  bottom: 65px;
}

.social-link.discord-link:hover {
  background: #5865F2;
  border-color: #5865F2;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
}

.social-link.twitter-link:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
}

.social-link.youtube-link:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.social-link.github-link:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer Stats */
.footer-stats {
  display: flex;
  gap: 30px;
}

.footer-stat-item {
  display: flex;
  flex-direction: column;
}

.footer-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8a2be2, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title i {
  color: #00ff99;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #00ff99;
}

.footer-links a:hover {
  color: #04724d;
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff99, transparent);
  margin: 40px 0;
}

/* Footer Bottom */
.footer-bottom {
  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: center; */
  /* flex-wrap: wrap; */
  /* gap: 20px; */
}

.footer-bottom-left {
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 8px; */
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-disclaimer i {
  font-size: 12px;
}

.footer-credits {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-credits strong {
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #00ff99, #0be68e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.heart-beat {
  color: #00ff99;
  animation: heart-beat-animation 1.5s ease-in-out infinite;
}

@keyframes heart-beat-animation {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}

/* Animated Background */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-glow 8s ease-in-out infinite;
}

.footer-glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00ff99 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.footer-glow-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00ff99 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: 4s;
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 20px) scale(1.1);
  }
}

.footer-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(138, 43, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 43, 226, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 60px 20px 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-left {
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-stats {
    justify-content: center;
  }
}

.footer-logo-icon {
  /* width: 50px; */
  /* height: 50px; */
  /* background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%); */
  /* border-radius: 14px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5); */
  /* animation: glow-pulse 3s ease-in-out infinite; */
  overflow: hidden;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.footer-logo-icon i {
  font-size: 26px;
  color: #fff;
}