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

:root {
  --primary-red: #ff3333;
  --red-transparent: rgba(255, 51, 51, 0.08);
  --red-hover: rgba(255, 51, 51, 0.15);
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: rgba(20, 20, 20, 0.8);
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --border-red: rgba(255, 51, 51, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a0a 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Efeito Flutuante Global */
.floating {
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card {
  backdrop-filter: blur(15px);
  background: var(--card-bg);
  border: 1px solid var(--border-red);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(255, 51, 51, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 51, 51, 0.2);
  border-color: var(--primary-red);
}

/* Partículas de fundo */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 8s infinite linear;
}

/* Efeito de Neve */
#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.snowflake {
  position: absolute;
  color: white;
  user-select: none;
  pointer-events: none;
  animation: fall linear infinite;
  font-size: 14px;
}

@keyframes fall {
  0% {
    transform: translateY(-100px);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0.3;
  }
}

/* Player de Rádio Flutuante Melhorado */
.radio-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: var(--card-bg);
  border: 1px solid var(--border-red);
  border-radius: 25px;
  padding: 15px 20px;
  box-shadow: 0 10px 40px rgba(255, 51, 51, 0.2);
  transition: all 0.3s ease;
  min-width: 280px;
}

.radio-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 51, 51, 0.3);
}

.radio-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-btn {
  background: var(--primary-red);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 0.9rem;
}

.radio-btn.secondary {
  background: rgba(255, 51, 51, 0.3);
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
}

.radio-btn:hover {
  background: #ff5555;
  transform: scale(1.1);
}

.radio-btn.secondary:hover {
  background: rgba(255, 51, 51, 0.5);
}

.radio-info {
  flex: 1;
  margin-left: 10px;
}

#radio-name {
  color: var(--primary-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

#radio-status {
  color: var(--text-gray);
  font-size: 0.8rem;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Header Moderno */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  border-radius: 25px;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo h1 {
  color: var(--primary-red);
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  background: var(--red-transparent);
  border: 1px solid var(--border-red);
  color: var(--primary-red);
  transform: translateY(-2px);
}

/* Dropdown Moderno */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-red);
  border-radius: 15px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: var(--red-transparent);
  color: var(--primary-red);
}

/* Main Content */
.main {
  margin-top: 120px;
  min-height: calc(100vh - 120px);
}

.section {
  display: none;
  padding: 4rem 0;
  min-height: calc(100vh - 120px);
}

.section.active {
  display: block;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--primary-red);
  text-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
  font-weight: 700;
}

/* Hero Section Moderno */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(255, 51, 51, 0.5);
  font-weight: 800;
}

.typing-text {
  border-right: 3px solid var(--primary-red);
  animation: typing 3s steps(8) infinite, blink 1s infinite;
}

@keyframes typing {
  0%,
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: var(--primary-red);
  }
  51%,
  100% {
    border-color: transparent;
  }
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.floating-btn {
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.2);
}

.btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), #ff5555);
  color: white;
  border: 2px solid var(--primary-red);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 51, 51, 0.4);
}

/* Logo Moderna */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-logo {
  padding: 2rem;
  border-radius: 50%;
  animation: float-logo 3s ease-in-out infinite;
}

.logo-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.3));
}

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

/* Videos Section */
.videos-section {
  margin-top: 4rem;
}

.videos-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-red);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.video-card {
  padding: 2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.video-card h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Grid Moderno para Redes Sociais */
.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.modern-card {
  display: flex;
  align-items: center;
  padding: 2rem;
  text-decoration: none;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

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

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

.card-badge {
  position: absolute;
  top: -8px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.card-badge.coming-soon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-content p {
  color: var(--text-gray);
  font-size: 1rem;
}

.card-arrow {
  opacity: 0;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.modern-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.card-arrow i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

/* Cores específicas dos cards */
.modern-card.youtube .card-icon {
  background: linear-gradient(135deg, #ff0000, #ff4444);
}
.modern-card.discord .card-icon {
  background: linear-gradient(135deg, #5865f2, #7289da);
}
.modern-card.instagram .card-icon {
  background: linear-gradient(135deg, #e4405f, #f56565);
}
.modern-card.mods .card-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.modern-card.hosting .card-icon {
  background: linear-gradient(135deg, #f97316, #fb923c);
}
.modern-card.scripts .card-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* Tools Grid Moderno */
.tools-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.tool-modern-card {
  display: flex;
  align-items: center;
  padding: 2.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red), #ff5555);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.tool-icon i {
  font-size: 2rem;
  color: white;
}

.tool-content {
  flex: 1;
}

.tool-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary-red);
  font-weight: 600;
}

.tool-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.tool-arrow {
  opacity: 0;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.tool-modern-card:hover .tool-arrow {
  opacity: 1;
  transform: translateX(8px);
}

.tool-arrow i {
  color: var(--primary-red);
  font-size: 1.5rem;
}

/* Footer Moderno */
.footer {
  margin: 4rem 20px 20px;
  border-radius: 20px;
  padding: 2rem 0;
  text-align: center;
  color: var(--text-gray);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Seção Parcerias */
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.partnership-card {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  border: 1px solid rgba(255, 140, 0, 0.3);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.partnership-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.partnership-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.partnership-logo {
  flex-shrink: 0;
}

.partner-logo {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
}

.partner-logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-red), #ff5555);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.partner-logo-placeholder.gaming {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.partnership-info {
  flex: 1;
}

.partner-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verified-badge {
  color: #8b5cf6;
  font-size: 1rem;
}

.star-badge {
  color: #ffd700;
  font-size: 1rem;
}

.partnership-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag.verified {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.tag.featured {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.tag.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.tag.active {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.tag.gaming {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.tag.popular {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.partnership-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.online-indicator {
  color: #10b981;
  font-size: 0.6rem;
}

.partnership-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.partnership-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.partnership-actions {
  display: flex;
  gap: 1rem;
}

.partnership-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.discord-btn {
  background: #5865f2;
  color: white;
  flex: 1;
  justify-content: center;
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

/* Estilos para a nova descrição */
.highlight-text {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.4rem;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
  display: block;
  margin-bottom: 0.5rem;
}

.business-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.business-highlight {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid;
  transition: all 0.3s ease;
}

.business-highlight.white {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.business-highlight.partnerships {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.business-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.call-to-action {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 51, 51, 0.5);
}

.hero-description strong {
  color: var(--primary-red);
  font-weight: 600;
}

/* Animação para o texto destacado */
.highlight-text {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.6), 0 0 40px rgba(255, 51, 51, 0.3);
  }
}

.tool-badge {
  position: absolute;
  top: -8px;
  right: 15px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  z-index: 10;
}

.tool-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.tool-badge.stable {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tool-modern-card {
  position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 20px 20px;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .modern-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tools-modern-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .main {
    margin-top: 100px;
  }

  .radio-player {
    bottom: 20px;
    right: 20px;
    padding: 12px 15px;
    min-width: 250px;
  }

  .radio-controls {
    gap: 8px;
  }

  .radio-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .radio-btn.secondary {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }

  #radio-name {
    font-size: 0.8rem;
  }

  #radio-status {
    font-size: 0.7rem;
  }

  /* Responsive para parcerias */
  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partnership-card {
    padding: 1.5rem;
  }

  .partnership-header {
    flex-direction: column;
    text-align: center;
  }

  .partnership-stats {
    justify-content: center;
  }

  .business-highlights {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .modern-card {
    padding: 1.5rem;
  }

  .tool-modern-card {
    padding: 2rem;
  }

  .radio-player {
    bottom: 15px;
    right: 15px;
    padding: 10px 12px;
    min-width: 220px;
  }

  .radio-info {
    margin-left: 5px;
  }

  /* Responsive para parcerias */
  .partnerships-grid {
    grid-template-columns: 1fr;
  }

  .partnership-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat {
    justify-content: center;
  }

  .business-highlights {
    gap: 0.5rem;
  }

  .business-highlight {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}
