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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(10, 132, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10, 132, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 132, 255, 0.03) 0%, transparent 50%);
}

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  text-align: center;
}

.cyberpunk-gear {
  margin-bottom: 30px;
}

.gear-icon {
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  filter: drop-shadow(0 0 20px #0a84ff);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.typing-text {
  font-size: 1.2rem;
  color: #0a84ff;
  font-weight: 500;
  min-height: 30px;
}

.cursor {
  animation: blink 1s infinite;
  color: #0a84ff;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0 80px;
  margin-top: 80px;
}

.reviews-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  background: #111;
  border: 1px solid rgba(10, 132, 255, 0.3);
  min-height: 200px;
}

.review-card {
  min-width: 100%;
  padding: 30px;
  display: none;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: all 0.5s ease;
  position: relative;
}

.review-card.active {
  display: flex;
  opacity: 1;
}

.stars {
  font-size: 1.2rem;
  color: #0a84ff;
  text-shadow: 0 0 10px rgba(10, 132, 255, 0.5);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0a84ff;
  box-shadow: 0 0 15px rgba(10, 132, 255, 0.3);
}

.user-details h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.user-details p {
  color: #ccc;
  font-style: normal;
  line-height: 1.6;
}

.product-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 132, 255, 0.2);
  color: #0a84ff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(10, 132, 255, 0.4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0a84ff;
  box-shadow: 0 0 10px rgba(10, 132, 255, 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 132, 255, 0.2);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #0a84ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #0a84ff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0a84ff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 60px 0;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff 0%, #0a84ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0a84ff;
  margin-bottom: 0;
}

/* Products Section */
.products {
  padding: 80px 0;
}

.products-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card {
  background: #111;
  border: 1px solid rgba(10, 132, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(10, 132, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.2);
}

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

.card-title-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a84ff;
}

.card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: rgba(10, 132, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid rgba(10, 132, 255, 0.4);
}

.card-description {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.card-features {
  list-style: none;
  margin-bottom: 30px;
}

.card-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #fff;
}

.btn-buy {
  width: 100%;
  background: linear-gradient(135deg, #0a84ff 0%, #0066cc 50%, #004499 100%);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulseGlow 3s ease-in-out infinite;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(10, 132, 255, 0.6);
  }
}

.btn-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-buy:hover::before {
  left: 100%;
}

.btn-buy:hover {
  background: linear-gradient(135deg, #1a94ff 0%, #1176dc 50%, #0e5aa9 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(10, 132, 255, 0.6);
  animation: none;
}

/* Tooltip para botões */
.btn-buy::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #0a84ff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(10, 132, 255, 0.3);
}

.btn-buy:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: 110%;
}



/* Footer */
.footer {
  background: #111;
  border-top: 1px solid rgba(10, 132, 255, 0.2);
  padding: 40px 0 20px;
}

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

.footer-section h4 {
  color: #0a84ff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #0a84ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 132, 255, 0.1);
  color: #666;
}

/* Floating Discord Button */
.floating-discord {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-discord button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
  transition: all 0.3s ease;
}

.floating-discord button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.discord-icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gear-icon {
    width: 60px;
    height: 60px;
  }
  
  .typing-text {
    font-size: 1rem;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .user-avatar {
    width: 50px;
    height: 50px;
  }
  
  .product-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  
  .nav {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .card {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  
  .card-title-with-icon {
    gap: 8px;
  }
  
  .floating-discord {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-discord button {
    width: 50px;
    height: 50px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .logo-img {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .nav {
    gap: 10px;
  }
  
  .card {
    padding: 15px;
  }
  
  .card-features li {
    font-size: 0.9rem;
  }
}
