:root {
  --primary: #4baee3;
  --secondary: #3a9cd1;
  --background: #0a0b0e;
  --surface: #151718;
  --text: #ffffff;
  --text-secondary: #9ca3af;
}

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

body {
  background-color: var(--background);
  color: var(--text);
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 1rem 4rem;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(15, 16, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  width: 65%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar.scrolled {
    width: 92%;
    padding: 0.8rem 1.5rem;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .feature-card.smooth-translate {
    transform: none !important;
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .product-card {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-features {
    margin: 1rem 0;
  }

  .product-features li {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(28, 220, 246, 0.2);
}

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

.product-card {
  background: rgba(10, 11, 15, 0.9);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  opacity: 1;
}

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

.product-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 15, 0) 0%,
    rgba(10, 11, 15, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-image-wrapper::after {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-content {
  padding: 2rem;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s ease;
}

.product-features {
  margin: 1.5rem 0;
}

.product-features li {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  background: rgba(28, 220, 246, 0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.product-features li:hover {
  background: rgba(28, 220, 246, 0.1);
  transform: translateX(5px);
}

.product-features li::before {
  content: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(28, 220, 246, 0.15);
}

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

.product-card:hover .product-features li {
  transform: translateX(5px);
  opacity: 1;
}

.product-card:hover .product-features li:nth-child(1) {
  transition-delay: 0.1s;
}
.product-card:hover .product-features li:nth-child(2) {
  transition-delay: 0.15s;
}
.product-card:hover .product-features li:nth-child(3) {
  transition-delay: 0.2s;
}
.product-card:hover .product-features li:nth-child(4) {
  transition-delay: 0.25s;
}

.section {
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(100px);
}

.glow-1 {
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.glow-2 {
  background: var(--secondary);
  bottom: -100px;
  right: -100px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

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

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-features {
    margin: 1rem 0;
  }

  .product-features li {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.testimonials {
  padding: 6rem 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 11, 15, 0.8));
}

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

.testimonial-card {
  background: rgba(15, 16, 20, 0.6);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0) scale(0.98);
  opacity: 0;
}

.testimonial-content {
  position: relative;
  padding-left: 2rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(15, 16, 20, 0.8);
}

.testimonial-card:hover .testimonial-content::before {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.testimonial-card.visible .testimonial-author {
  transform: translateY(0);
  opacity: 1;
}

.footer {
  background: rgba(10, 11, 15, 0.95);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-section h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary), #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.terms-container {
  background: rgba(15, 16, 20, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.terms-container:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(28, 220, 246, 0.15);
  transform: translateY(-5px);
}

.terms-list {
  list-style: none;
}

.terms-list li {
  position: relative;
  padding: 1rem 0 0.3rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.7rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .terms-list li::before {
    top: 2.1rem;
  }
}

.terms-list li:hover {
  color: var(--text);
  padding-left: 3rem;
}

.terms-list li:hover::before {
  transform: scale(1.5);
  box-shadow: 0 0 10px var(--primary);
}

.disclaimer {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(75, 174, 227, 0.1);
  border-radius: 10px;
  color: var(--text-secondary);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .terms-container {
    padding: 1.5rem;
  }
  
  .terms-list li {
    font-size: 1rem;
    padding: 0.8rem 0 0.8rem 2rem;
  }
}

@media (max-width: 768px) {
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .feature-card.smooth-translate {
    transform: none !important;
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
  }
}

.feature-card {
  background: rgba(10, 11, 15, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(360deg);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-description {
  color: var (--text-secondary);
  line-height: 1.6;
}

.smooth-translate {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-float {
  animation: float 6s ease-in-out infinite;
}

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

.product-image-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

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

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

.product-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.product-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(28, 220, 246, 0.2);
}

.product-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.5s;
}

.product-btn:hover::after {
  transform: rotate(45deg) translate(150%, -150%);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.product-price {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.product-btn-buy {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
}

.product-btn-info:hover {
  background: rgba(28, 220, 246, 0.1);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 16, 20, 0.8);
  border: 1px solid rgba(28, 220, 246, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-icon {
  color: var(--primary);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
  opacity: 1;
}

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

.faq-item:hover {
  border-color: var(--primary);
}

.testimonial-card {
  background: rgba(15, 16, 20, 0.6);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(10px);
}

.testimonial-card[data-loaded="true"] {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-content {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-content p {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.author-rank {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.verify-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(28, 220, 246, 0.1);
}

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

.testimonial-card {
  background: rgba(15, 16, 20, 0.6);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  backdrop-filter: blur(10px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.user-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(28, 220, 246, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.testimonial-content {
  position: relative;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-info h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-rank {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}

.verify-badge {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.testimonial-card[data-loaded="true"] {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(28, 220, 246, 0.1);
}

.player-info {
  margin-top: 1rem;
  text-align: left;
}

.player-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.player-rank {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

.player-stats span {
  color: var(--text-secondary);
}

.testimonial-card {
  padding: 1.5rem;
  background: rgba(15, 16, 20, 0.8);
  backdrop-filter: blur(10px);
}

.user-tag {
  background: rgba(28, 220, 246, 0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.purchase-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
  opacity: 0.8;
}

.purchase-info span:nth-child(2) {
  color: var (--text-secondary);
}

.testimonial-card {
  background: rgba(15, 16, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.player-name {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatUpDown 2s ease-in-out infinite;
}

.scroll-arrow {
  padding: 20px;
}

.scroll-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
  margin: -10px;
  animation: scrollAnimate 2s infinite;
}

.scroll-arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes scrollAnimate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

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

.features-grid {
  gap: 2rem;
}

.feature-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  background: rgba(10, 11, 15, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(28, 220, 246, 0.1);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(360deg);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

@keyframes slideInAndGlow {
  0% {
    transform: translateY(100%);
    opacity: 0;
    box-shadow: 0 8px 32px rgba(28, 220, 246, 0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 8px 32px rgba(28, 220, 246, 0.15);
  }
}