/* Navigation */

.cart-icon {
  position: relative;
  background: rgba(108, 92, 231, 0.2);
  padding: 10px;
  border-radius: 50%;
  margin-right: 1rem;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #6c5ce7;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -30px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: radial-gradient(
    ellipse 60% 100% at center bottom,
    rgba(108, 92, 231, 0.3) 0%,
    rgba(76, 81, 191, 0.2) 40%,
    transparent 100%
  );
  filter: blur(30px);
  z-index: -1;
  animation: heroGlow 5s ease-in-out infinite alternate;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes heroGlow {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-subtitle {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0;
  animation: slideUp 0.8s ease 0.2s forwards;
  margin-top: auto;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(130deg, #fff, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: slideUp 0.8s ease 0.4s forwards;
}

.hero-description {
  font-size: 1.3rem;
  color: #bbb;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  animation: slideUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s ease 0.8s forwards;
}

.primary-button {
  background: linear-gradient(135deg, rgb(108, 92, 231), rgb(162, 155, 254));
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(225, 112, 85, 0.4);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle,
.hero-title,
.hero-description,
.hero-buttons {
  transform: translateY(30px);
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  background: rgba(26, 26, 46, 0.3);
  margin: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(108, 92, 231, 0.2);
  box-shadow: 0 0 50px rgba(108, 92, 231, 0.1);
}

.features::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30%;
  right: 30%;
  height: 40px;
  background: radial-gradient(
    ellipse 100% 100% at center,
    rgba(108, 92, 231, 0.3) 0%,
    rgba(76, 81, 191, 0.2) 50%,
    transparent 100%
  );
  filter: blur(15px);
  z-index: -1;
  animation: featureGlow 3s ease-in-out infinite alternate;
}

@keyframes featureGlow {
  0% {
    opacity: 0.5;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.8;
    transform: scaleX(1.2);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(108, 92, 231, 0.5);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-description {
  color: #bbb;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 4rem 1rem;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Floating particles */
.particle {
  position: absolute;
  background: rgba(108, 92, 231, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

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

.features-section {
  padding: 80px 0;
  background: transparent;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 40px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.single-feature {
  max-width: 800px;
  width: 100%;
  padding: 50px;
  justify-content: flex-start;
  align-items: center;
}

.single-feature .icon-wrapper {
  width: 80px;
  height: 80px;
  margin-right: 30px;
  flex-shrink: 0;
}

.single-feature .icon {
  width: 32px;
  height: 32px;
}

.feature-content {
  flex: 1;
}

.single-feature .feature-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.single-feature .feature-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
}

.single-feature .feature-label {
  font-size: 14px;
  margin-bottom: 12px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
}

.bg-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.bg-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.bg-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.bg-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.feature-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.text-blue {
  color: #3b82f6;
}
.text-green {
  color: #10b981;
}
.text-purple {
  color: #8b5cf6;
}
.text-orange {
  color: #f59e0b;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.feature-desc {
  color: #94a3b8;
  line-height: 1.5;
  font-size: 14px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

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

.indicator.active {
  background: #3b82f6;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carousel-slide {
    padding: 0 20px;
  }

  .single-feature {
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }

  .single-feature .icon-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .single-feature .feature-title {
    font-size: 24px;
  }

  .single-feature .feature-desc {
    font-size: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }
}

/* Section */
.mobile-app-section {
  position: relative;
  padding: 5rem 0;
  background: transparent; /* bg-gray-900 */
  overflow: hidden;
}
.background-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.container {
  position: relative;
  z-index: 10;
  max-width: 1120px;
  margin: auto;
  padding: 0 1.5rem;
}
.content-wrapper {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Text Section */
.subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #60a5fa;
  margin-bottom: 1rem;
}
.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.description {
  font-size: 1.25rem;
  color: #d1d5db;
}

/* Phone Mockup */
.phone-wrapper {
  display: flex;
  justify-content: center;
}
.iphone-mockup {
  width: 18rem;
  height: 600px;
  background: black;
  border: 8px solid #1f2937;
  border-radius: 3rem;
  padding: 0.5rem;
  position: relative;
  animation: float 3s ease-in-out infinite;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: #1f2937;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  color: white;
  font-size: 0.875rem;
}
.signal {
  width: 1rem;
  height: 0.5rem;
  background: white;
  border-radius: 0.125rem;
}
.battery {
  width: 1.5rem;
  height: 0.75rem;
  border: 1px solid white;
  border-radius: 0.125rem;
  display: flex;
  align-items: center;
  padding: 0.125rem;
}
.battery-level {
  width: 1rem;
  height: 0.25rem;
  background: white;
}

/* App Header */
.app-header {
  padding: 1rem;
  border-bottom: 1px solid #374151;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}
.app-icon {
  width: 2rem;
  height: 2rem;
  background: #3b82f6;
  border-radius: 0.5rem;
}
.date {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* App Body */
.app-body {
  padding: 1rem;
}
.chart-container {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: auto;
}
.chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.chart-bg {
  stroke: #4b5563;
  stroke-width: 8;
  fill: none;
}
.chart-progress {
  stroke: #3b82f6;
  stroke-width: 8;
  stroke-dasharray: 314;
  stroke-dashoffset: 94;
  stroke-linecap: round;
  fill: none;
}
.chart-center {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}
.summary {
  text-align: center;
  margin: 1rem 0;
}
.summary .label {
  color: #9ca3af;
  font-size: 0.875rem;
}
.summary .amount {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}
.categories .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.categories .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  margin-right: 0.5rem;
}
.categories .value {
  color: white;
  font-weight: 500;
}
.dot.blue {
  background: #3b82f6;
}
.dot.purple {
  background: #a855f7;
}
.dot.green {
  background: #10b981;
}
.dot.orange {
  background: #f97316;
}

/* Bottom Navigation */
.bottom-nav1 {
  background: #374151;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
.nav-item1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: #9ca3af;
}
.nav-item1 .nav-icon1 {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
}
.nav-item1 .nav-icon1.gray {
  background: #4b5563;
}
.nav-item1 .nav-icon1.blue {
  background: #3b82f6;
}
.nav-item1.active {
  color: #60a5fa;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.sponsor-section {
  overflow: hidden;
  background: transparent;
  padding: 2rem 0;
  margin-top: 60px;
}

.sponsor-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sponsor-track {
  display: flex;
  width: fit-content;
  animation: marquee 10s linear infinite;
  min-width: 100%;
}

.sponsor-img {
  height: 50px;
  margin: 0 2rem;
  flex-shrink: 0;
  object-fit: contain;
}

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

/* From Uiverse.io by gharsh11032000 */
.card {
  position: relative;
  width: 260px; /* sebelumnya 190px */
  height: 360px; /* sebelumnya 254px */
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 16px; /* naikkan padding juga biar seimbang */
  gap: 14px;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 150px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: 270px; /* sebelumnya 190px */
  height: 380px;
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
  width: 260px; /* sebelumnya 190px */
  height: 380px;
}

.heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.card p:not(.heading) {
  font-size: 14px;
}

.card p:last-child {
  color: #e81cff;
  font-weight: 600;
}

.card:hover::after {
  filter: blur(30px);
}

.card:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.main-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.header-content {
  text-align: center;
  margin-bottom: 4rem;
  z-index: 10;
  position: relative;
}

.main-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  line-height: 1.6;
  margin: 0 auto;
}

.cards-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.task-card {
  position: absolute;
  background: rgba(20, 25, 40, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  width: 320px;
  transition: all 0.3s ease;
}

.task-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card positioning */
.card-1 {
  left: 200px;
  top: 50px;
  transform: rotate(-15deg);
  z-index: 1;
  opacity: 0.7;
}

.card-2 {
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  z-index: 3;
  width: 350px;
  height: 500px;
}

.card-3 {
  right: 200px;
  top: 50px;
  transform: rotate(15deg);
  z-index: 1;
  opacity: 0.7;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.task-item:last-child {
  border-bottom: none;
}

.task-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.task-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
}

.icon-p {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}
.icon-b {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
}
.icon-u {
  background: linear-gradient(45deg, #45b7d1, #96c93d);
}
.icon-f {
  background: linear-gradient(45deg, #f093fb, #f5576c);
}

.task-name {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-green {
  background: #4ade80;
}
.status-orange {
  background: #fb923c;
}
.status-blue {
  background: #60a5fa;
}

/* User avatar */
.user-avatar {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.avatar-name {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating elements animation */
.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.dot:nth-child(2) {
  top: 60%;
  left: 85%;
  animation-delay: 2s;
}
.dot:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}
.dot:nth-child(4) {
  top: 30%;
  left: 80%;
  animation-delay: 1s;
}
.dot:nth-child(5) {
  top: 70%;
  left: 60%;
  animation-delay: 3s;
}

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

.card-1:hover {
  transform: rotate(-15deg) translateY(-10px) scale(1.02);
}
.card-2:hover {
  transform: translateX(-50%) translateY(-10px) scale(1.02);
}
.card-3:hover {
  transform: rotate(15deg) translateY(-10px) scale(1.02);
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .cards-container {
    height: 400px;
    flex-direction: column;
    gap: 1rem;
  }

  .task-card {
    position: relative !important;
    transform: none !important;
    width: 100% !important;
    max-width: 350px;
  }

  .card-1,
  .card-2,
  .card-3 {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
  }
}

.gold-member-section {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
  margin-bottom: 5rem;
}

.gold-card {
  width: 450px;
  height: 280px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.gold-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem;
  z-index: 2;
}

.nox-branding {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.nox-text {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd700;
  letter-spacing: 2px;
}

.connection-text {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 215, 0, 0.8);
  letter-spacing: 1px;
  margin-top: -2px;
}

.member-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
  letter-spacing: 3px;
  text-align: center;
  z-index: 3;
}

.liquid-effect {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.6) 0%,
    rgba(255, 193, 7, 0.4) 30%,
    rgba(255, 235, 59, 0.3) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: liquidFlow 4s ease-in-out infinite alternate;
  z-index: 1;
}

.liquid-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.liquid-particles .particle {
  position: absolute;
  background: #ffd700;
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.liquid-particles .particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 60%;
  right: 25%;
  animation-delay: 0s;
}

.liquid-particles .particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 40%;
  right: 35%;
  animation-delay: 1s;
}

.liquid-particles .particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 70%;
  right: 20%;
  animation-delay: 2s;
}

.liquid-particles .particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 30%;
  right: 30%;
  animation-delay: 0.5s;
}

@keyframes liquidFlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: rotate(20deg) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 1;
  }
}

.hero-section {
  min-height: 100vh;

  position: relative;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite ease-in-out;
}

.star:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 2px;
  height: 2px;
  animation-delay: 0s;
}
.star:nth-child(2) {
  top: 80%;
  left: 20%;
  width: 1px;
  height: 1px;
  animation-delay: 1s;
}
.star:nth-child(3) {
  top: 30%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation-delay: 2s;
}
.star:nth-child(4) {
  top: 70%;
  left: 90%;
  width: 2px;
  height: 2px;
  animation-delay: 0.5s;
}
.star:nth-child(5) {
  top: 15%;
  left: 60%;
  width: 1px;
  height: 1px;
  animation-delay: 1.5s;
}
.star:nth-child(6) {
  top: 90%;
  left: 70%;
  width: 2px;
  height: 2px;
  animation-delay: 2.5s;
}

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

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float 6s infinite ease-in-out;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4ecdc4, #6ee0d7);
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f39c12, #f5b742);
  top: 30%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
  position: relative;
}

.content {
  color: white;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, rgb(108, 92, 231), rgb(162, 155, 254));
  color: white;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-mockup {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: #1e1f23;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid #2d2e35;
}

.desktop-header {
  height: 30px;
  background: #202225;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid #2d2e35;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ff5f56;
}
.control.yellow {
  background: #ffbd2e;
}
.control.green {
  background: #27ca3f;
}

.discord-title {
  color: #72767d;
  font-size: 0.75rem;
  font-weight: 600;
}

.desktop-content {
  display: flex;
  height: calc(100% - 30px);
}

.sidebar {
  width: 70px;
  background: #202225;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
}

.server-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.server-icon:hover {
  border-radius: 16px;
}

.server-icon.active::before {
  content: "";
  position: absolute;
  left: -16px;
  width: 4px;
  height: 20px;
  background: white;
  border-radius: 0 4px 4px 0;
}

.server-icon:nth-child(1) {
  background: #5865f2;
  color: white;
}
.server-icon:nth-child(2) {
  background: #57f287;
  color: #1e1f23;
}
.server-icon:nth-child(3) {
  background: #fee75c;
  color: #1e1f23;
}
.server-icon:nth-child(4) {
  background: #eb459e;
  color: white;
}

.channels-section {
  width: 200px;
  background: #2f3136;
  display: flex;
  flex-direction: column;
}

.server-header {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #202225;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.channels-list {
  flex: 1;
  padding: 16px 8px;
}

.channel-category {
  color: #8e9297;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 16px 8px 4px 8px;
  letter-spacing: 0.02em;
}

.channel {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  margin: 1px 0;
  border-radius: 4px;
  color: #96989d;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.channel:hover {
  background: #393c43;
  color: #dcddde;
}

.channel.active {
  background: #404249;
  color: white;
}

.channel-icon {
  margin-right: 6px;
  font-size: 12px;
}

.chat-area {
  flex: 1;
  background: #36393f;
  display: flex;
  flex-direction: column;
}

.chat-header {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #202225;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.message {
  display: flex;
  margin-bottom: 16px;
  animation: slideInUp 0.3s ease forwards;
  opacity: 0;
}

.message:nth-child(1) {
  animation-delay: 0.5s;
}
.message:nth-child(2) {
  animation-delay: 0.8s;
}
.message:nth-child(3) {
  animation-delay: 1.1s;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}

.avatar:nth-child(1) {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.message-content {
  flex: 1;
}

.username {
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.message-text {
  color: #dcddde;
  font-size: 14px;
  line-height: 1.4;
}

.mobile-mockup {
  position: absolute;
  width: 160px;
  height: 320px;
  background: #333;
  border-radius: 25px;
  top: -40px;
  right: -60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  animation: floatDevice 4s infinite ease-in-out;
  border: 3px solid #333;
}

@keyframes floatDevice {
  0%,
  100% {
    transform: translateY(0px) rotate(2deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

.mobile-screen {
  width: 100%;
  height: 100%;
  background: #36393f;
  position: relative;
  margin: 8px 0;
  border-radius: 20px;
}

.mobile-header {
  height: 40px;
  background: #2f3136;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.mobile-chat {
  padding: 16px;
  height: calc(100% - 60px);
  overflow: hidden;
}

.mobile-message {
  background: #40444b;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 18px;
  color: #dcddde;
  font-size: 14px;
  animation: slideInRight 0.4s ease forwards;
  opacity: 0;
}

.mobile-message:nth-child(1) {
  animation-delay: 1.2s;
}
.mobile-message:nth-child(2) {
  animation-delay: 1.5s;
}
.mobile-message:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.character {
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 120px;
  height: 160px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: bounce 3s infinite ease-in-out;
}

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

.character::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #fbbf24;
  border-radius: 50%;
}

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

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .cta-buttons {
    justify-content: center;
  }
}

.container4 {
  max-width: 1400px;
  margin: 0 auto;
}

.nav-tabs4 {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nav-tab4 {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.nav-tab4.active {
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #1a1a2e;
  font-weight: 600;
}

.nav-tab4:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-tab4.active:hover {
  background: linear-gradient(45deg, #ffed4a, #ffd700);
}

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

.game-card {
  position: relative;
  background: linear-gradient(145deg, #2a2a4a, #1e1e3a);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.game-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.region-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-info {
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.game-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.game-genre {
  font-size: 12px;
  color: #a0a0a0;
  margin-bottom: 12px;
}

.crown-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Game-specific backgrounds */
/* .mobile-legends {
  background-image: url("img/mobilelegend.png");
}

.free-fire {
  background-image: url("img/freefire1.jpg");
}

.pubg {
  background-image: url("img/pubgmobile.jpg");
}

.genshin {
  background-image: url("img/genshinimpact.jpg");
}

.codm {
  background-image: url("img/codmobile.png");
}

.valorant {
  background-image: url("img/valorant.jpg");
} */

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .nav-tabs {
    justify-content: center;
  }

  .nav-tab {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Payment Section */

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

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #6c757d;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #007bff;
}

.page-header {
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.page-header p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.region-selector {
  margin-bottom: 3rem;
  text-align: center;
}

.region-selector label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.region-dropdown {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(52, 211, 153, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.region-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
  pointer-events: none;
}

.region-dropdown:hover::before {
  left: 100%;
}

.region-dropdown:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(52, 211, 153, 0.2);
  transform: translateY(-2px);
}

.region-dropdown:focus {
  outline: none;
  border-color: rgba(52, 211, 153, 0.8);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.region-dropdown option {
  background: #1a5f4a;
  color: white;
  padding: 0.8rem;
  border: none;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.payment-grid.show {
  opacity: 1;
  transform: translateY(0);
}

.payment-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  transition: border-radius 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.payment-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #059669;
  transform: translateY(-1px);
}

.payment-card.selected {
  border-color: #059669;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
  transform: translateY(-2px);
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    #059669 50%,
    transparent 70%
  );
  opacity: 0.1;
  transform: rotate(45deg) translate(50px, -50px);
}

.payment-card:hover::before {
  opacity: 0.2;
  animation: lightning 0.5s ease;
}

.payment-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.payment-icon {
  width: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 1rem;
}

.payment-icon img {
  max-height: 50px;
}

.card-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.paypal-icon {
  background: #0070ba;
  color: white;
}

.apple-icon {
  background: #000;
  color: white;
}

.google-icon {
  background: #4285f4;
  color: white;
}

.bank-icon {
  background: #28a745;
  color: white;
}

.crypto-icon {
  background: #f7931a;
  color: white;
}

.payment-title {
  display: flex;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  align-items: center;
  justify-content: center;
}

.payment-subtitle {
  display: flex;
  color: #fff;
  font-size: 0.9rem;
  align-items: center;
  justify-content: center;
}

.payment-details {
  margin-bottom: 1.5rem;
}

.payment-details p {
  margin-bottom: 0.75rem;
  color: #fff;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  padding: 0.25rem 0;
  color: #fff;
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.payment-fees {
  background: #f8f9fa;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border-left: 4px solid #007bff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  text-align: left;
}

.fee-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  margin-top: -10px;
}

.info-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 3px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.info-section.show {
  opacity: 1;
  transform: translateY(0);
}

.info-section:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
  border-color: linear-gradient(135deg, rgb(108, 92, 231), rgb(162, 155, 254));
}

.info-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.selected-payment-display {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin-bottom: 0rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.selected-payment-display.show {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 1.5rem;
}

.selected-payment-display h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.selected-payment-display p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

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

  .region-dropdown {
    width: 100%;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

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

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: left;
}

.security-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: linear-gradient(135deg, rgb(108, 92, 231), rgb(162, 155, 254));
}

.security-icon {
  width: 40px;
  height: 40px;
  background: #e3f2fd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1976d2;
  flex-shrink: 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  margin-bottom: 1rem;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #007bff;
  transform: translateY(-1px);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #fff;
  line-height: 1.6;
}

.contact-info {
  background: linear-gradient(130deg, #226674, #2dd4bf);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-top: 3rem;
  width: 82%;
  align-items: center;
  margin: 0 auto;

  position: relative;
}

.contact-info h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.payment-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  gap: 0;
}

.payment-header .logo img {
  max-width: 200px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
  border-radius: 4px;
}

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

.main1-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.section1-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.main-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.section-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}

.security-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.security-card:hover::before {
  transform: scaleX(1);
}

.card-header {
  display: block;
  align-items: left;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 10px;
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  align-items: Left;
  justify-content: left;
}

.card-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.trust-badge {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #22c55e;
  font-weight: 500;
}

.trust-indicator {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.center-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .container {
    padding: 0;
  }

  .main-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .main-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

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

  .security-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .security-card {
    padding: 1.5rem;
  }

  .card-header {
    gap: 0.75rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .trust-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

.country-section {
  margin-bottom: 5rem;
}

.country-header {
  text-align: center;
  margin: 0 auto 3rem auto; /* auto left & right biar center */
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s,
    border-radius 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 80%;
  align-items: center;
}

.country-flag {
  font-size: 2rem;

  filter: grayscale(20%);
}

.country-title {
  font-size: 4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.country-subtitle {
  font-size: 1.5rem;
  color: #6b7280;
  font-weight: 400;
}

/* Payment Method Styles */

.dropdown-section {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.dropdown-header {
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.dropdown-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-title {
  font-size: 18px;
  font-weight: 600;
}

.dropdown-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.dropdown-section.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-section.active .dropdown-content {
  max-height: 500px;
}

@keyframes lightning {
  0% {
    transform: rotate(45deg) translate(50px, -50px);
  }
  50% {
    transform: rotate(45deg) translate(30px, -30px);
  }
  100% {
    transform: rotate(45deg) translate(50px, -50px);
  }
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.payment-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: white;
}

.shopee-logo {
  background: #ee4d2d;
}

.linkaja-logo {
  background: #e31e24;
}

.ovo-logo {
  background: #5f4fb3;
}

.dana-logo {
  background: #118eea;
}

.gopay-logo {
  background: #00aa5b;
}

.qris-logo {
  background: #ff6b35;
}

.mandiri-logo {
  background: #003d7a;
}

.bca-logo {
  background: #1e3a8a;
}

.paylah-logo {
  background: #dc2626;
}

.youtrip-logo {
  background: #7c3aed;
}

.promptpay-logo {
  background: #059669;
}

.touchgo-logo {
  background: #1d4ed8;
}

.duitnow-logo {
  background: #dc2626;
}

.crypto-logo {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.payment-name {
  font-size: 20px;
  font-weight: 600;
}

.payment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-price {
  font-size: 16px;
  font-weight: 600;
  color: #ffd700;
}

.payment-status {
  font-size: 12px;
  color: #888;
  font-style: italic;
}

.verified-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
}
