@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@400;700&display=swap');
    
:root {
  --primary: #ff6b6b;
  --secondary: #4ecdc4;
  --dark: #292f36;
  --light: #f7f7f7;
  --accent: #ffd166;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, var(--dark) 80%);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.brick-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  transform-style: preserve-3d;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.header p {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateX(5deg);
  transition: transform 0.5s ease;
}

.video-container:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(255, 107, 107, 0.2));
  pointer-events: none;
}

.card-container {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.8s ease;
}

.pnb-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
}

.pnb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--accent));
  transition: transform 0.5s ease;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-align: center;
}

.card h5 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
  text-align: center;
  font-weight: bold;
}

.buy-button {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.buy-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.5);
}

.buy-button::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: all 0.6s ease;
}

.buy-button:hover::before {
  left: 100%;
}

.buy-button a {
  color: white;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--dark);
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transform: rotate(15deg);
  z-index: 10;
  animation: pulse 2s infinite;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 4rem 0;
  opacity: 0;
  transform: translateY(50px);
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 30%;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature p {
  color: var(--light);
  font-size: 1rem;
}

.counter-section {
  text-align: center;
  margin: 4rem 0;
  opacity: 0;
  transform: translateY(50px);
}

.counter-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.counter-item {
  margin: 1rem;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 1rem;
  color: var(--light);
}

footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
}


@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: rotate(15deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.1);
  }
  100% {
    transform: rotate(15deg) scale(1);
  }
}

@keyframes glitch {
  0% {
    text-shadow: 3px 0 0 rgba(255, 0, 0, 0.5), -3px 0 0 rgba(0, 255, 255, 0.5);
    transform: translateX(0);
  }
  20% {
    text-shadow: 3px 0 0 rgba(255, 0, 0, 0.5), -3px 0 0 rgba(0, 255, 255, 0.5);
    transform: translateX(5px);
  }
  40% {
    text-shadow: -3px 0 0 rgba(255, 0, 0, 0.5), 3px 0 0 rgba(0, 255, 255, 0.5);
    transform: translateX(-5px);
  }
  60% {
    text-shadow: -3px 0 0 rgba(255, 0, 0, 0.5), 3px 0 0 rgba(0, 255, 255, 0.5);
    transform: translateX(5px);
  }
  80% {
    text-shadow: 3px 0 0 rgba(255, 0, 0, 0.5), -3px 0 0 rgba(0, 255, 255, 0.5);
    transform: translateX(-5px);
  }
  100% {
    text-shadow: 3px 0 0 rgba(255, 0, 0, 0.5), -3px 0 0 rgba(0, 255, 255, 0.5);
    transform: translateX(0);
  }
}


@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }
  
  .feature {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 2rem;
  }
  
  .feature {
    width: 100%;
  }
}