/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

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

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

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: #1e90ff;
  background: rgba(30, 144, 255, 0.1);
}

.nav-link.active {
  color: #1e90ff;
  background: rgba(30, 144, 255, 0.1);
  font-weight: 600;
}

.nav-mobile {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: rgba(30, 144, 255, 0.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
  background: rgba(30, 144, 255, 0.1);
  color: #1e90ff;
}

.mobile-link:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000;
}

.highlight {
  color: #1e90ff;
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1e90ff;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Platforms Section */
.platforms {
  padding: 4rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

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

.platform-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.platform-card.featured {
  border: 2px solid #1e90ff;
  transform: scale(1.05);
}

.platform-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.platform-icon.ps4,
.platform-icon.ps5 {
  background: linear-gradient(135deg, #003087, #0070d1);
}

.platform-icon.xbox {
  background: linear-gradient(135deg, #107c10, #5bb85b);
}

.platform-icon.pc {
  background: linear-gradient(135deg, #333, #666);
}

.platform-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.platform-info p {
  color: #666;
  margin-bottom: 1rem;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #666;
}

.stat-item i {
  color: #1e90ff;
}

.btn-platform {
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.platform-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
}

.featured-badge {
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
}

/* Platform Hero */
.platform-hero {
  margin-top: 80px;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.platform-hero.ps4-theme {
  background: linear-gradient(135deg, #003087, #0070d1);
}

.platform-hero.ps5-theme {
  background: linear-gradient(135deg, #000, #003087);
}

.platform-hero.xbox-theme {
  background: linear-gradient(135deg, #107c10, #5bb85b);
}

.platform-hero.pc-theme {
  background: linear-gradient(135deg, #333, #666);
}

.platform-hero-content {
  text-align: center;
  color: white;
}

.platform-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.platform-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.platform-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.platform-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Products Section */
.products {
  padding: 4rem 0;
  background: #f8f9fa;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e5e5e5;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1e90ff;
  color: white;
  border-color: #1e90ff;
}

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

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 0.9rem;
}

.rating-count {
  font-size: 0.8rem;
  color: #666;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e90ff;
}

.discount {
  background: #ff4757;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #0066cc, #004499);
  transform: translateY(-2px);
}

/* Installation Guide */
.installation-guide {
  padding: 4rem 0;
  background: white;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.cart-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: #f0f0f0;
  color: #000;
}

.cart-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-items {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.cart-item-price {
  color: #1e90ff;
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quantity-btn {
  background: #f0f0f0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.remove-btn {
  background: #ff4757;
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-btn:hover {
  background: #ff3742;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e5e5;
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, #0066cc, #004499);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-empty {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.cart-empty i {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e90ff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #1e90ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: white;
  color: #1e90ff;
  transform: translateY(-2px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: #1e90ff;
  width: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

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

  .platform-card.featured {
    transform: none;
  }

  .platform-card.featured:hover {
    transform: translateY(-10px);
  }

  .platform-hero h1 {
    font-size: 2rem;
  }

  .platform-features {
    flex-direction: column;
    align-items: center;
  }

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

  .guide-steps {
    grid-template-columns: 1fr;
  }

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

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

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

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

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

  .platform-hero h1 {
    font-size: 1.8rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .platforms,
  .products,
  .features,
  .installation-guide {
    padding: 2rem 0;
  }

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

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

.product-card {
  animation: fadeInUp 0.6s ease forwards;
}

.platform-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

/* New Direct Checkout Button */
.btn-checkout-direct {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.btn-checkout-direct:hover {
  background: linear-gradient(135deg, #128c7e, #0d7377);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

.btn-checkout-direct:active {
  transform: translateY(0);
}

.btn-checkout-direct i {
  font-size: 1.1rem;
}

/* Exclusive Page Styles */
.exclusive-hero {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ff4757, #ff6b7a, #ffa726);
  position: relative;
  overflow: hidden;
  color: white;
}

.exclusive-hero-content {
  text-align: center;
}

.exclusive-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.exclusive-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.exclusive-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.exclusive-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.countdown-timer {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 400px;
  margin: 0 auto;
}

.timer-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.timer-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
}

.timer-unit span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.timer-unit label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.exclusive-products {
  padding: 4rem 0;
  background: #f8f9fa;
}

.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.exclusive-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.exclusive-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.exclusive-card.featured {
  border: 3px solid #ffd700;
  transform: scale(1.02);
}

.exclusive-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.exclusive-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.exclusive-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.exclusive-badge:has(.fa-crown) {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.exclusive-badge.hot {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  animation: pulse 2s infinite;
}

.exclusive-badge.limited {
  background: linear-gradient(135deg, #5f27cd, #8854d0);
  color: white;
}

.exclusive-badge.new {
  background: linear-gradient(135deg, #2ed573, #7bed9f);
  color: white;
}

.exclusive-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.exclusive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.exclusive-card:hover .exclusive-image img {
  transform: scale(1.1);
}

.exclusive-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(255, 71, 87, 0.8), rgba(255, 107, 122, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discount-badge {
  background: #fff;
  color: #ff4757;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.exclusive-info {
  padding: 2rem;
}

.exclusive-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.exclusive-description p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.exclusive-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.exclusive-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.exclusive-includes i {
  color: #2ed573;
  font-size: 0.8rem;
}

.exclusive-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.exclusive-price .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
}

.exclusive-price .price-current {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff4757;
}

.exclusive-platforms {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.platform-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

.platform-tag.ps {
  background: linear-gradient(135deg, #003087, #0070d1);
}

.platform-tag.xbox {
  background: linear-gradient(135deg, #107c10, #5bb85b);
}

.platform-tag.pc {
  background: linear-gradient(135deg, #333, #666);
}

.btn-exclusive {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.1rem;
}

.btn-exclusive:hover {
  background: linear-gradient(135deg, #128c7e, #0d7377);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  color: white;
}

.guarantee-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.guarantee-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 4rem;
  color: #ffd700;
}

.guarantee-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guarantee-text p {
  opacity: 0.9;
  line-height: 1.6;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.guarantee-item i {
  color: #ffd700;
  width: 16px;
}

/* Responsive para exclusivos */
@media (max-width: 768px) {
  .exclusive-hero h1 {
    font-size: 2rem;
  }

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

  .timer-display {
    gap: 0.5rem;
  }

  .timer-unit {
    min-width: 60px;
    padding: 0.8rem;
  }

  .timer-unit span {
    font-size: 1.5rem;
  }

  .guarantee-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .guarantee-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .exclusive-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .exclusive-hero {
    padding: 2rem 0;
  }

  .exclusive-hero h1 {
    font-size: 1.8rem;
  }

  .countdown-timer {
    padding: 1rem;
  }

  .exclusive-card {
    margin: 0 1rem;
  }
}
