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

:root {
  --steam-dark: #1b2838;
  --steam-darker: #171a21;
  --steam-blue: #1a9fff;
  --steam-blue-hover: #66c0f4;
  --steam-green: #5c7e10;
  --steam-green-light: #a4d007;
  --steam-gray: #2a475e;
  --steam-light-gray: #c7d5e0;
  --steam-text: #c7d5e0;
  --steam-white: #ffffff;
  --gradient-blue: linear-gradient(135deg, #1a9fff 0%, #66c0f4 100%);
  --gradient-green: linear-gradient(135deg, #5c7e10 0%, #a4d007 100%);
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--steam-darker);
  color: var(--steam-text);
  line-height: 1.6;
}

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

/* Timer Bar */
.timer-bar {
  background: linear-gradient(90deg, #ff4444 0%, #cc0000 100%);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.timer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.fire-icon {
  font-size: 24px;
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.timer {
  background: rgba(0,0,0,0.3);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--steam-dark) 0%, var(--steam-darker) 100%);
  padding: 60px 0 80px;
  text-align: center;
}

.headline {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight {
  color: var(--steam-blue);
  text-shadow: 0 0 30px rgba(26, 159, 255, 0.5);
}

.subheadline {
  font-size: 20px;
  color: var(--steam-light-gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid var(--steam-gray);
}

.mockup-container {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(26, 159, 255, 0.3), 0 0 40px rgba(164, 208, 7, 0.2);
  border: 3px solid var(--steam-blue);
}

.mockup-image {
  width: 100%;
  height: auto;
  display: block;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-green);
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(92, 126, 16, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(92, 126, 16, 0.6);
}

.pulse {
  animation: pulse 2s infinite;
}

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

.trust-text {
  margin-top: 20px;
  color: var(--steam-green-light);
  font-size: 14px;
}

/* Problems Section */
.problems {
  background: var(--steam-darker);
  padding: 80px 0;
}

.problems h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: white;
}

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

.problem-item {
  background: var(--steam-dark);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--steam-gray);
  transition: transform 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.solution-text {
  text-align: center;
  font-size: 24px;
  color: var(--steam-blue);
}

/* Games Showcase */
.games-showcase {
  background: linear-gradient(180deg, var(--steam-dark) 0%, var(--steam-darker) 100%);
  padding: 80px 0;
}

.games-showcase h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
}

.section-subtitle {
  text-align: center;
  color: var(--steam-light-gray);
  margin-bottom: 50px;
  font-size: 18px;
}

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

.game-card {
  background: var(--steam-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

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

.game-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

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

.game-title-overlay {
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.game-info {
  padding: 20px;
  text-align: center;
}

.game-info h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
}

.original-price {
  color: var(--steam-light-gray);
  font-size: 14px;
}

.strikethrough {
  text-decoration: line-through;
  color: #ff4444;
}

.free-price {
  color: var(--steam-green-light);
  font-size: 24px;
  font-weight: 900;
  margin-top: 5px;
}

.all-games-badge {
  background: var(--gradient-blue);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.all-games-badge span {
  font-size: 36px;
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
}

.all-games-badge p {
  font-size: 18px;
}

/* Benefits Section */
.benefits {
  background: var(--steam-darker);
  padding: 80px 0;
}

.benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: white;
}

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

.benefit-item {
  background: var(--steam-dark);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--steam-gray);
}

.benefit-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.benefit-item h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 15px;
}

/* Bonus Section - New Design */
.bonus {
  background: linear-gradient(180deg, #0a0f16 0%, #1b2838 100%);
  padding: 80px 0;
}

.bonus h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bonus-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: var(--steam-green-light);
  font-weight: 600;
}

.bonus-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.bonus-card-new {
  background: linear-gradient(145deg, #1a2332 0%, #0d1117 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.bonus-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--steam-green-light);
  box-shadow: 0 20px 50px rgba(164, 208, 7, 0.2);
}

.bonus-card-new:nth-child(1) { border-color: #ff6b35; }
.bonus-card-new:nth-child(2) { border-color: #00d4ff; }
.bonus-card-new:nth-child(3) { border-color: #a855f7; }

.bonus-image-new {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
}

.bonus-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.bonus-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.bonus-card-new:nth-child(2) .bonus-tag {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.bonus-card-new:nth-child(3) .bonus-tag {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.bonus-game-logos {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.bonus-game-logos img {
  width: 80px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.bonus-game-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.bonus-content-new {
  padding: 25px;
}

.bonus-content-new h3 {
  color: white;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.3;
}

.bonus-promise {
  font-size: 14px;
  color: #b8c7d9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-price-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.bonus-old-price {
  font-size: 13px;
  color: #666;
  text-decoration: line-through;
}

.bonus-new-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--steam-green-light);
  text-shadow: 0 0 20px rgba(164, 208, 7, 0.5);
}

.bonus-total-new {
  background: linear-gradient(135deg, rgba(164, 208, 7, 0.15) 0%, rgba(26, 159, 255, 0.15) 100%);
  border: 2px solid var(--steam-green-light);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  animation: totalPulse 2s ease-in-out infinite;
}

@keyframes totalPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164, 208, 7, 0.4); }
  50% { box-shadow: 0 0 30px 10px rgba(164, 208, 7, 0.2); }
}

.bonus-total-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.bonus-total-label {
  font-size: 16px;
  color: white;
  font-weight: 600;
}

.bonus-total-old {
  font-size: 22px;
  color: #ff4444;
  text-decoration: line-through;
  font-weight: 700;
}

.bonus-total-arrow {
  font-size: 24px;
  color: var(--steam-green-light);
  animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.bonus-total-free {
  font-size: 28px;
  font-weight: 900;
  color: var(--steam-green-light);
  text-shadow: 0 0 20px rgba(164, 208, 7, 0.6);
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(164, 208, 7, 0.6); }
  to { text-shadow: 0 0 40px rgba(164, 208, 7, 0.9), 0 0 60px rgba(164, 208, 7, 0.4); }
}

/* Pricing Section */
.pricing {
  background: var(--steam-darker);
  padding: 80px 0;
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  color: white;
}

.pricing-subtitle {
  text-align: center;
  color: #ff4444;
  margin-bottom: 30px;
  font-size: 18px;
}

/* Scarcity Bar */
.scarcity-container {
  max-width: 600px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 2px solid #ff4444;
  border-radius: 16px;
  padding: 20px 30px;
  animation: scarcityPulse 2s ease-in-out infinite;
}

@keyframes scarcityPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 68, 68, 0.2); }
}

.scarcity-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.scarcity-icon {
  font-size: 24px;
  animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.scarcity-text {
  font-size: 18px;
  font-weight: 900;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scarcity-bar {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.scarcity-progress {
  width: 97%;
  height: 100%;
  background: linear-gradient(90deg, #ff4444 0%, #ff8c00 50%, #ff4444 100%);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: progressShimmer 2s linear infinite;
  position: relative;
}

.scarcity-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes progressShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.scarcity-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.scarcity-sold {
  color: var(--steam-green-light);
  font-size: 14px;
}

.scarcity-remaining {
  color: #ff4444;
  font-size: 14px;
  animation: urgencyBlink 1s ease-in-out infinite;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--steam-dark);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid var(--steam-gray);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--steam-green-light);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(164, 208, 7, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-green);
  color: white;
  padding: 8px 30px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-header h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 10px;
}

.plan-description {
  color: var(--steam-light-gray);
}

.plan-price {
  text-align: center;
  margin-bottom: 20px;
}

.old-price {
  display: block;
  color: #ff4444;
  text-decoration: line-through;
  font-size: 16px;
  margin-bottom: 5px;
}

.currency {
  font-size: 24px;
  vertical-align: top;
  color: var(--steam-green-light);
}

.amount {
  font-size: 72px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.period {
  display: block;
  color: var(--steam-light-gray);
  font-size: 14px;
  margin-top: 5px;
}

.pix-discount {
  text-align: center;
  background: rgba(164, 208, 7, 0.2);
  color: var(--steam-green-light);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--steam-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check {
  color: var(--steam-green-light);
  font-weight: 700;
}

.x {
  color: #ff4444;
  font-weight: 700;
}

.disabled {
  color: #666;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.plan-button.basic {
  background: var(--steam-gray);
  color: white;
  border: 2px solid var(--steam-light-gray);
}

.plan-button.basic:hover {
  background: var(--steam-blue);
  border-color: var(--steam-blue);
}

.plan-button.premium {
  background: var(--gradient-green);
  color: white;
}

.plan-button.premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(164, 208, 7, 0.4);
}

.guarantee-text {
  text-align: center;
  margin-top: 15px;
  color: var(--steam-green-light);
  font-size: 14px;
}

/* Guarantee Section */
.guarantee {
  background: linear-gradient(180deg, var(--steam-dark) 0%, var(--steam-darker) 100%);
  padding: 60px 0;
}

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

.guarantee-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.guarantee h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.guarantee-highlight {
  color: var(--steam-green-light);
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
}

/* Social Proof */
.social-proof {
  background: var(--steam-darker);
  padding: 80px 0;
}

.social-proof h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: white;
}

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

.testimonial {
  background: var(--steam-dark);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--steam-gray);
}

.stars {
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 16px;
}

.author {
  color: var(--steam-blue);
  font-weight: 600;
}

.users-count {
  text-align: center;
  font-size: 20px;
  color: var(--steam-green-light);
}

/* FAQ Section */
.faq {
  background: linear-gradient(180deg, var(--steam-dark) 0%, var(--steam-darker) 100%);
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: white;
}

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

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: var(--steam-gray);
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-size: 18px;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--steam-blue);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  background: var(--steam-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.faq-answer.active {
  padding: 20px 25px;
  max-height: 200px;
}

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

/* Contact Section */
.contact {
  background: var(--steam-darker);
  padding: 60px 0;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
}

.contact-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item span {
  font-size: 30px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--steam-blue) 0%, #0d5a9e 100%);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #0d0d12;
  padding: 30px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #666;
}

.disclaimer {
  margin-top: 10px;
  font-size: 12px;
}

/* Animated Bonus Cards */
.animated-bonus {
  transition: all 0.4s ease;
}

.animated-bonus:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(26, 159, 255, 0.3);
}

.pulse-badge {
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(26, 159, 255, 0.7); }
  50% { transform: scale(1.1); box-shadow: 0 0 20px 5px rgba(26, 159, 255, 0.4); }
}

/* E-book 3D Animation */
.ebook-3d {
  perspective: 1000px;
}

.ebook-cover-animated {
  display: flex;
  transform: rotateY(-20deg);
  animation: floatBook 3s ease-in-out infinite;
  position: relative;
}

@keyframes floatBook {
  0%, 100% { transform: rotateY(-20deg) translateY(0); }
  50% { transform: rotateY(-15deg) translateY(-10px); }
}

.ebook-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.ebook-spine-3d {
  width: 20px;
  background: linear-gradient(180deg, #4a4a8a 0%, #2a2a5a 100%);
  border-radius: 3px 0 0 3px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.ebook-front-3d {
  width: 110px;
  height: 140px;
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #1b2838 100%);
  border-radius: 0 5px 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 3px solid #4a6a8a;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
  position: relative;
}

.ebook-icon-container {
  position: relative;
}

.ebook-icon-animated {
  font-size: 40px;
  animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle-1 { top: -5px; right: -5px; animation-delay: 0s; }
.sparkle-2 { bottom: -5px; left: -5px; animation-delay: 0.5s; }
.sparkle-3 { top: 50%; right: -10px; animation-delay: 1s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

.ebook-title-3d {
  font-size: 14px;
  font-weight: 900;
  color: var(--steam-blue);
  margin-top: 5px;
}

.ebook-subtitle-3d {
  font-size: 10px;
  color: #aaa;
}

.ebook-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--steam-green-light);
  color: #000;
  font-size: 8px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Video Player Animation */
.video-player-animated {
  position: relative;
  width: 160px;
}

.video-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.5) 0%, transparent 70%);
  filter: blur(25px);
  animation: glowPulse 2s ease-in-out infinite;
}

.video-screen {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-play-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--steam-green) 0%, var(--steam-green-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-icon {
  color: white;
  font-size: 24px;
  margin-left: 5px;
}

.play-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--steam-green-light);
  border-radius: 50%;
  animation: ringPulse 1.5s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.video-progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}

.video-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--steam-green-light);
  border-radius: 3px;
  animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 0%; }
}

.video-info-bar {
  background: rgba(0,0,0,0.5);
  padding: 8px 15px;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.video-course-title {
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.video-duration {
  font-size: 11px;
  color: var(--steam-green-light);
}

/* Telegram Group Animation */
.telegram-group-animated {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.telegram-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.5) 0%, transparent 70%);
  filter: blur(30px);
  animation: glowPulse 2s ease-in-out infinite;
}

.telegram-icon-container {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: telegramBounce 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

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

.telegram-icon {
  font-size: 35px;
}

.notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #ff4444;
  border-radius: 50%;
  animation: notificationPulse 1s ease-in-out infinite;
}

@keyframes notificationPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.group-members-animated {
  display: flex;
  align-items: center;
}

.member-avatar {
  width: 30px;
  height: 30px;
  background: var(--steam-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -10px;
  border: 2px solid var(--steam-dark);
  animation: memberPop 3s ease-in-out infinite;
}

.member-avatar:first-child { margin-left: 0; animation-delay: 0s; }
.member-avatar:nth-child(2) { animation-delay: 0.2s; }
.member-avatar:nth-child(3) { animation-delay: 0.4s; }

@keyframes memberPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.member-count {
  background: var(--steam-green-light);
  color: #000;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 20px;
  margin-left: 5px;
}

.group-label {
  font-size: 14px;
  font-weight: 900;
  color: white;
  background: rgba(0,0,0,0.3);
  padding: 5px 15px;
  border-radius: 5px;
}

/* Sales Notification */
.sales-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--steam-dark) 0%, var(--steam-gray) 100%);
  border: 2px solid var(--steam-green-light);
  border-radius: 12px;
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: slideIn 0.5s ease-out;
  max-width: 320px;
}

.sales-notification.hidden {
  display: none;
}

@keyframes slideIn {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

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

.notification-icon {
  font-size: 35px;
  animation: bounceIcon 1s ease-in-out infinite;
}

.notification-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.notification-text strong {
  color: var(--steam-green-light);
  font-size: 14px;
}

.notification-text span {
  color: var(--steam-light-gray);
  font-size: 12px;
}

.notification-time {
  color: #888;
  font-size: 10px;
  white-space: nowrap;
}

/* Upsell Popup - Compact */
.upsell-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upsell-popup.hidden {
  display: none;
}

.upsell-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.upsell-modal-compact {
  position: relative;
  background: linear-gradient(180deg, #1b2838 0%, #0d1117 100%);
  border: 4px solid var(--steam-green-light);
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  padding: 0;
  animation: popIn 0.3s ease;
  box-shadow: 0 0 60px rgba(164, 208, 7, 0.4);
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.upsell-header-compact {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  padding: 20px;
  text-align: center;
  border-radius: 16px 16px 0 0;
}

.upsell-alert {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 5px;
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.upsell-header-compact h2 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.upsell-price-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.upsell-price-big .price-old {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
}

.upsell-price-big .price-new {
  font-size: 48px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.upsell-features-compact {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(164, 208, 7, 0.1);
  flex-wrap: wrap;
}

.upsell-features-compact span {
  font-size: 13px;
  color: var(--steam-green-light);
  font-weight: 600;
}

.upsell-buttons-compact {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upsell-btn-accept {
  display: block;
  background: linear-gradient(135deg, var(--steam-green) 0%, var(--steam-green-light) 100%);
  color: white;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 5px 25px rgba(164, 208, 7, 0.5);
}

.upsell-btn-accept:hover {
  transform: scale(1.02);
}

.upsell-btn-decline {
  display: block;
  color: #555;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-decoration: none;
}

.upsell-btn-decline:hover {
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 28px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .timer-content {
    font-size: 14px;
  }
  
  .timer {
    font-size: 16px;
  }
  
  .contact-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .amount {
    font-size: 56px;
  }
  
  .sales-notification {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  
  .upsell-price-big .price-new {
    font-size: 40px;
  }
  
  .upsell-btn-accept {
    font-size: 16px;
  }
  
  .bonus h2 {
    font-size: 28px;
  }
  
  .bonus-grid-new {
    grid-template-columns: 1fr;
  }
  
  .bonus-game-logos img {
    width: 60px;
    height: 24px;
  }
  
  .bonus-total-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .bonus-total-old {
    font-size: 18px;
  }
  
  .bonus-total-free {
    font-size: 24px;
  }
}
