* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000000;
  color: #e0e0e0;
  line-height: 1.6;
}

/* NAVEGAÇÃO */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid rgba(255, 100, 0, 0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.nav-logo {
  width: 50px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff6400;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ff6400;
  border-radius: 2px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 100, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(100, 200, 255, 0.1) 0%, transparent 50%);
  animation: drift 20s ease-in-out infinite;
  z-index: 0;
}

.hero-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* LOGO */
.logo {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 100, 0, 0.8));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* INAUGURAÃ‡ÃƒO */
.launch-bar {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 100, 0, 0.5);
  border-radius: 15px;
  padding: 20px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.glow-soft {
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.2);
}

.launch-label {
  color: #ff6400;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
}

.pulse-text {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.launch-date {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.beta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 200, 255, 0.15);
  border: 1px solid rgba(100, 200, 255, 0.5);
  color: #64c8ff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.beta-link:hover {
  background: rgba(100, 200, 255, 0.25);
  border-color: rgba(100, 200, 255, 0.8);
  transform: translateY(-2px);
}

/* CONTADOR */
.launch-countdown {
  display: flex;
  gap: 20px;
}

.count-box {
  background: rgba(255, 100, 0, 0.2);
  border: 1px solid rgba(255, 100, 0, 0.5);
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  min-width: 60px;
}

.count-box strong {
  display: block;
  font-size: 24px;
  color: #ff6400;
}

.count-box span {
  font-size: 12px;
  color: #aaa;
}

/* TITULO */
.title-animated {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 100, 0, 0.8), 0 0 40px rgba(255, 100, 0, 0.4);
  margin: 30px 0;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 100, 0, 0.8), 0 0 40px rgba(255, 100, 0, 0.4); }
  50% { text-shadow: 0 0 40px rgba(255, 100, 0, 1), 0 0 80px rgba(255, 100, 0, 0.6); }
}

/* DESCRIÃ‡ÃƒO */
.hero-desc {
  font-size: 20px;
  color: #bbb;
  margin-bottom: 40px;
}

/* FEATURES */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-box {
  background: rgba(255, 100, 0, 0.15);
  border: 1px solid rgba(255, 100, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  color: #ff6400;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 100, 0, 0.25);
  border-color: rgba(255, 100, 0, 0.6);
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 24px;
}

/* FLOAT EFFECT */
.float {
  animation: floatBox 5s ease-in-out infinite;
}

.delay1 { animation-delay: 1s; }
.delay2 { animation-delay: 2s; }
.delay3 { animation-delay: 3s; }

@keyframes floatBox {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* BOTÃƒO */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #25d366, #1da851);
  padding: 18px 42px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(37,211,102,.6);
}

.pulse-btn {
  animation: pulseBtn 2.5s infinite;
}

@keyframes pulseBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* CTA NOTE */
.cta-note {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
}

/* INFO */
.info {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #000000);
}

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

.info-card {
  background: rgba(255, 100, 0, 0.1);
  border: 2px solid rgba(255, 100, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card i {
  font-size: 48px;
  color: #ff6400;
  margin-bottom: 15px;
  display: block;
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.info-card p {
  color: #bbb;
  font-size: 14px;
}

.info-card.hover-glow:hover {
  background: rgba(255, 100, 0, 0.2);
  border-color: rgba(255, 100, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.3);
  transform: translateY(-10px);
}

/* CONVERSÃƒO */
.conversion {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #0c2e66, #050f22);
}

.conversion h2 {
  font-size: 36px;
  margin-bottom: 26px;
}

.conversion p {
  font-size: 18px;
  max-width: 880px;
  margin: 0 auto 20px;
  color: #dbe6ff;
}

.conversion-highlight {
  font-size: 21px;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(120,180,255,.45);
}

/* CLASSES */
.classes {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #050505);
}

.classes-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.classes-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

.classes-intro {
  text-align: center;
  color: #bbb;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.class-card {
  background: rgba(255, 100, 0, 0.08);
  border: 2px solid rgba(255, 100, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.class-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 100, 0, 0.8), transparent);
  transition: left 0.6s ease;
}

.class-card:hover::before {
  left: 100%;
}

.class-card:hover {
  background: rgba(255, 100, 0, 0.15);
  border-color: rgba(255, 100, 0, 0.6);
  box-shadow: 0 10px 30px rgba(255, 100, 0, 0.2);
  transform: translateY(-12px);
}

.class-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 25px;
  background: rgba(255, 100, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 100, 0, 0.2);
  transition: all 0.3s ease;
}

.class-card:hover .class-image {
  background: rgba(255, 100, 0, 0.18);
  border-color: rgba(255, 100, 0, 0.4);
}

.char-image {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  filter: drop-shadow(0 4px 8px rgba(255, 100, 0, 0.3));
  transition: all 0.3s ease;
}

.class-card:hover .char-image {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 16px rgba(255, 100, 0, 0.5));
}

.char-icon {
  font-size: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(255, 100, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

.class-alt-name {
  color: #ff6400;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 100, 0, 0.2);
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 100, 0, 0.3);
}

.class-card:hover .class-alt-name {
  background: rgba(255, 100, 0, 0.3);
  border-color: rgba(255, 100, 0, 0.5);
}

.class-icon {
  font-size: 54px;
  display: block;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

.class-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.class-header h3 {
  color: #fff;
  font-size: 24px;
  margin: 0;
  flex: 1;
}

.class-tag {
  background: linear-gradient(135deg, rgba(255, 100, 0, 0.4), rgba(255, 100, 0, 0.2));
  border: 1px solid rgba(255, 100, 0, 0.6);
  color: #ff6400;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.class-desc {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.class-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  color: #ff6400;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 100, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 100, 0, 0.2);
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6400, #ffb84d);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.class-card:hover .stat-fill {
  background: linear-gradient(90deg, #ffb84d, #ff6400);
}

.class-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trait {
  background: rgba(255, 100, 0, 0.2);
  border: 1px solid rgba(255, 100, 0, 0.4);
  color: #ffb84d;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.class-card:hover .trait {
  background: rgba(255, 100, 0, 0.35);
  border-color: rgba(255, 100, 0, 0.6);
}

.classes-note {
  background: rgba(100, 200, 255, 0.08);
  border: 2px solid rgba(100, 200, 255, 0.3);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.classes-note i {
  color: #64c8ff;
  font-size: 24px;
  min-width: 24px;
  margin-top: 2px;
}

.classes-note div {
  flex: 1;
}

.classes-note strong {
  color: #64c8ff;
  display: block;
  margin-bottom: 5px;
}

.classes-note {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* CLASS CARD COLORS */
.class-card.bk:hover {
  border-color: rgba(220, 20, 60, 0.6);
  background: rgba(220, 20, 60, 0.12);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.class-card.sm:hover {
  border-color: rgba(4, 107, 204, 0.6);
  background: rgba(0, 132, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 174, 255, 0.2);
}

.class-card.me:hover {
  border-color: rgba(76, 175, 80, 0.6);
  background: rgba(76, 175, 80, 0.12);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.class-card.mg:hover {
  border-color: rgba(156, 39, 176, 0.6);
  background: rgba(156, 39, 176, 0.12);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
}

/* FOOTER */
.footer {
  background: #000;
  color: #999;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 100, 0, 0.3);
  font-size: 14px;
}

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

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ff6400;
  text-decoration: none;
  margin: 0 10px;
}

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

/* SERVER STATUS */
.server-status {
  padding: 60px 20px;
  background: #050505;
}

.server-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.server-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

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

.status-card {
  background: rgba(255, 100, 0, 0.1);
  border: 2px solid rgba(255, 100, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.status-card.online {
  border-color: rgba(76, 175, 80, 0.6);
  background: rgba(76, 175, 80, 0.1);
}

.status-card i {
  font-size: 48px;
  color: #4caf50;
  margin-bottom: 15px;
}

.status-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.status-card p {
  color: #aaa;
  margin-bottom: 15px;
}

.player-count {
  display: block;
  color: #ff6400;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.server-load {
  width: 100%;
  height: 8px;
  background: rgba(255, 100, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 15px 0;
}

.load-bar {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #45a049);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.load-text {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* VIP */
.vip {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.vip-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.vip-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

.vip-intro {
  text-align: center;
  color: #bbb;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vip-intro strong {
  color: #ffb84d;
}

.vip-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.vip-benefits-card,
.vip-guarantee-card {
  background: rgba(255, 100, 0, 0.08);
  border: 2px solid rgba(255, 100, 0, 0.3);
  border-radius: 15px;
  padding: 35px;
  transition: all 0.3s ease;
}

.vip-benefits-card:hover,
.vip-guarantee-card:hover {
  background: rgba(255, 100, 0, 0.15);
  border-color: rgba(255, 100, 0, 0.6);
  box-shadow: 0 10px 30px rgba(255, 100, 0, 0.2);
  transform: translateY(-8px);
}

.vip-benefits-card h3,
.vip-guarantee-card h3 {
  color: #ff6400;
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vip-benefits,
.vip-not {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vip-benefits li,
.vip-not li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
}

.vip-benefits li i {
  color: #4caf50;
  font-size: 18px;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.vip-not li i {
  color: #f44336;
  font-size: 18px;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.vip-benefits li:hover,
.vip-not li:hover {
  color: #fff;
  transform: translateX(8px);
}

.vip-benefits li:hover i,
.vip-not li:hover i {
  transform: scale(1.2);
}

.vip-note {
  background: rgba(100, 200, 255, 0.08);
  border: 2px solid rgba(100, 200, 255, 0.3);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}

.vip-note i {
  color: #64c8ff;
  font-size: 28px;
  min-width: 28px;
  margin-top: 3px;
  flex-shrink: 0;
}

.vip-note div {
  flex: 1;
  color: #bbb;
  font-size: 15px;
  line-height: 1.8;
}

.vip-note strong {
  color: #64c8ff;
}

/* NEWS */
.news {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #000000);
}

.news-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.news-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

/* ACCORDION STYLES */
.news-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: rgba(255, 100, 0, 0.08);
  border: 2px solid rgba(255, 100, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 100, 0, 0.6);
  background: rgba(255, 100, 0, 0.12);
  box-shadow: 0 5px 20px rgba(255, 100, 0, 0.15);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  gap: 20px;
}

.accordion-header:hover {
  background: rgba(255, 100, 0, 0.08);
}

.accordion-header .news-date {
  color: #ff6400;
  font-size: 11px;
  font-weight: bold;
  display: block;
  min-width: 85px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-header h3 {
  color: #fff;
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.accordion-header:hover h3 {
  color: #ffb84d;
}

.accordion-header i {
  color: #ff6400;
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
  min-width: 20px;
  text-align: center;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 100, 0, 0.2);
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-content p {
  color: #d0d0d0;
  padding: 20px 25px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.accordion-content p:first-of-type {
  padding-top: 20px;
}

.accordion-content p:last-of-type {
  padding-bottom: 20px;
}

.accordion-content strong {
  color: #ffb84d;
  font-weight: 600;
}

/* RANKINGS */
.rankings {
  padding: 60px 20px;
  background: #050505;
}

.rankings-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.rankings-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 100, 0, 0.1);
  border: 2px solid rgba(255, 100, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.ranking-table thead {
  background: rgba(255, 100, 0, 0.2);
}

.ranking-table th {
  padding: 15px;
  text-align: left;
  color: #ff6400;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 100, 0, 0.3);
}

.ranking-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 100, 0, 0.2);
  color: #e0e0e0;
}

.ranking-table tr:hover {
  background: rgba(255, 100, 0, 0.15);
}

.ranking-table tr.rank-1 {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 100, 0, 0.1) 100%);
}

.ranking-table tr.rank-1 td {
  color: #ffd700;
  font-weight: bold;
}

.ranking-table tr.rank-2 {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.2) 0%, rgba(255, 100, 0, 0.1) 100%);
}

.ranking-table tr.rank-2 td {
  color: #e8e8e8;
  font-weight: bold;
}

.ranking-table tr.rank-3 {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.2) 0%, rgba(255, 100, 0, 0.1) 100%);
}

.ranking-table tr.rank-3 td {
  color: #cd7f32;
  font-weight: bold;
}

/* PROJECT */
.project {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #000000);
}

.project-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.project-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

.project-intro {
  text-align: center;
  color: #bbb;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.8;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.project-card {
  background: rgba(255, 100, 0, 0.1);
  border: 2px solid rgba(255, 100, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.project-card i {
  font-size: 48px;
  color: #ff6400;
  margin-bottom: 15px;
  display: block;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.project-card p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.project-card:hover {
  background: rgba(255, 100, 0, 0.2);
  border-color: rgba(255, 100, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.3);
  transform: translateY(-10px);
}

.project-note {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin-top: 30px;
}

/* FAQ */
.faq {
  padding: 60px 20px;
  background: #050505;
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

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

.faq-item {
  background: rgba(255, 100, 0, 0.1);
  border: 2px solid rgba(255, 100, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 100, 0, 0.2);
  border-color: rgba(255, 100, 0, 0.6);
  transform: translateY(-5px);
}

.faq-item h3 {
  color: #ff6400;
  margin-bottom: 15px;
  font-size: 18px;
}

.faq-item p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #000000);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

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

.contact-card {
  background: rgba(255, 100, 0, 0.1);
  border: 2px solid rgba(255, 100, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255, 100, 0, 0.2);
  border-color: rgba(255, 100, 0, 0.6);
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.3);
}

.contact-card i {
  font-size: 48px;
  color: #ff6400;
  margin-bottom: 15px;
  display: block;
}

.contact-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.contact-card p {
  color: #bbb;
  font-size: 14px;
}

/* GLOW EFFECTS */
.glow-soft {
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.2);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .title-animated {
    font-size: 48px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .launch-bar {
    flex-direction: column;
  }

  .launch-countdown {
    width: 100%;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-table {
    font-size: 12px;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 10px 5px;
  }

  h2 {
    font-size: 36px;
  }

  .project-grid,
  .status-grid,
  .news-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 80px;
  }

  .title-animated {
    font-size: 36px;
  }

  .launch-countdown {
    flex-wrap: wrap;
  }

  .count-box {
    min-width: 50px;
    padding: 8px 10px;
  }

  .count-box strong {
    font-size: 18px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .info-wrapper {
    grid-template-columns: 1fr;
  }
}
/* DOWNLOADS */
.downloads {
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
  padding: 80px 20px;
  text-align: center;
}

.downloads-wrapper {
  max-width: 1100px;
  margin: auto;
}

.downloads-wrapper h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.downloads-intro {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 50px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.download-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 100, 0, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.download-card i {
  font-size: 48px;
  color: #ff6400;
}

.download-card h3 {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.download-card p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.download-btn {
  background: linear-gradient(135deg, #ff6400 0%, #ffb84d 100%);
  color: #000;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.download-card:hover {
  border-color: rgba(255, 100, 0, 0.8);
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.3);
  transform: translateY(-5px);
}

.download-card:hover .download-btn {
  transform: scale(1.05);
}

/* Cores específicas por plataforma */
.download-card.windows i { color: #0078d4; }
.download-card.windows:hover { 
  border-color: rgba(0, 120, 212, 0.8); 
  box-shadow: 0 0 20px rgba(0, 120, 212, 0.3); 
}

.download-card.android i { color: #3ddc84; }
.download-card.android:hover { 
  border-color: rgba(61, 220, 132, 0.8); 
  box-shadow: 0 0 20px rgba(61, 220, 132, 0.3); 
}

.download-card.ios i { color: #555555; }
.download-card.ios:hover { 
  border-color: rgba(85, 85, 85, 0.8); 
  box-shadow: 0 0 20px rgba(85, 85, 85, 0.3); 
}