:root {
  --bg: #050816;
  --bg-alt: #070b1e;
  --bg-alt-soft: #0f172a;
  --accent: #ef4444;
  --accent-soft: rgba(239, 68, 68, 0.15);
  --accent-strong: #dc2626;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 45px rgba(26, 15, 15, 0.85);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2a0f0f 0, #0a0202 55%, #000 100%);
  color: var(--text);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 5;
}

.bg-effects {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 30% 30%, #dc2626, transparent 60%);
  animation: float-orb 24s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 768px) {
  .bg-orb {
    width: 240px;
    height: 240px;
    filter: blur(30px);
    opacity: 0.35;
  }
  
  .bg-flash {
    width: 120px;
    height: 120px;
  }
}

.orb-1 {
  top: -120px;
  left: -120px;
}

.orb-2 {
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle at 20% 20%, #ef4444, transparent 60%);
  animation-duration: 30s;
  animation-delay: -10s;
}

.orb-3 {
  top: 35%;
  right: 45%;
  background: radial-gradient(circle at 60% 0, #b91c1c, transparent 60%);
  animation-duration: 28s;
  animation-delay: -5s;
}

.bg-flash {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(250, 250, 255, 0.3), transparent);
  opacity: 0;
  mix-blend-mode: screen;
  animation: flash-pulse 8s ease-in-out infinite;
  will-change: opacity;
  transform: translateZ(0);
}

.flash-1 {
  top: 20%;
  left: 55%;
}

.flash-2 {
  bottom: 18%;
  left: 25%;
  animation-delay: -3s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(26, 15, 15, 0.95),
    rgba(26, 15, 15, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  position: relative;
  z-index: 10;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.75);
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.logo-accent {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
  position: relative;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transition: width 0.18s ease-out;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  will-change: transform;
  transform: translateZ(0);
  white-space: nowrap;
  text-align: center;
}

.btn-block {
  white-space: normal;
  line-height: 1.4;
}

.btn-icons {
  font-size: 1.1rem;
  margin-right: 0.3rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.btn span:not(.btn-icons) {
  display: inline-block;
  vertical-align: middle;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-outline:hover {
  background: rgba(26, 15, 15, 0.9);
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-paypal {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: 1px solid #ef4444;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
}

.btn-paypal:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.5);
  background: linear-gradient(135deg, #f87171, #dc2626);
}

.btn-cashapp {
  background: linear-gradient(135deg, #00d632, #00b82a);
  color: white;
  border: 1px solid #00d632;
  box-shadow: 0 10px 25px rgba(0, 214, 50, 0.35);
}

.btn-cashapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 214, 50, 0.5);
  background: linear-gradient(135deg, #00f03c, #00b82a);
}

/* Official Payment Buttons */
.payment-button {
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
  border: none;
  cursor: pointer;
  width: 100%;
  min-height: 50px;
}

.payment-button:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-button-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 50px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
}

.payment-methods {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  border-radius: var(--radius-lg);
}

.payment-methods:hover {
  background: linear-gradient(135deg, var(--accent-strong), #b91c1c);
}

.payment-form-fields {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.payment-field-placeholder {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  height: 2.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  opacity: 0.9;
}

.payment-field-placeholder:last-child {
  grid-column: 1 / -1;
}

.payment-pay-button {
  background: #000;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.payment-pay-button:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.payment-methods-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0.75rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.payment-icon-small {
  height: 28px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  display: block;
}

.payment-icon-small:first-child {
  max-width: 65px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.payment-icon-small:nth-child(2) {
  max-width: 65px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.payment-icon-small:nth-child(3) {
  max-width: 65px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.payment-icon-small:last-child {
  max-width: 100px;
  height: 24px;
  filter: none !important;
}

.payment-methods-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.payment-paypal-direct .payment-button-img,
.payment-card .payment-button-img,
.payment-cashapp .payment-button-img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.payment-paypal-direct,
.payment-card,
.payment-cashapp {
  background: #000000 !important;
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  min-height: 50px;
  border: 2px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.payment-cashapp:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 20px rgba(0, 214, 50, 0.4);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0 0 0.75rem;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text) !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.hero-badges span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.72rem;
  color: var(--muted);
  background: radial-gradient(circle at top left, #2a0f0f 0, transparent 55%);
}

.hero-card {
  background: radial-gradient(circle at top left, #2a0f0f 0, #0a0202 60%);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.hero-card-header {
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(
    120deg,
    rgba(220, 38, 38, 0.16),
    rgba(239, 68, 68, 0.08)
  );
}

.hero-card-body {
  padding: 1rem 1rem 0.9rem;
}

.featured-product-image {
  width: 100%;
  max-height: 120px;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(26, 15, 15, 0.5);
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  display: block;
  object-fit: contain;
}

.hero-card-body h2 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-card-body p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.hero-card-body .price {
  font-size: 1.1rem;
}

.hero-card-body .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.muted {
  color: var(--muted);
}

.tiny-note {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.price-line {
  margin: 0.9rem 0 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
}

.section {
  padding: 3.5rem 0;
  position: relative;
  will-change: transform;
}

.section.alt {
  background: radial-gradient(circle at top left, #0a0202 0, #0a0202 35%, #000 100%);
}

.section-header {
  margin-bottom: 1.7rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.25),
      transparent 45%
    ),
    rgba(26, 15, 15, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.1rem 1.15rem 1rem;
  box-shadow: 0 12px 40px rgba(26, 15, 15, 0.9);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.product-card:hover,
.product-card:active {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 16px 50px rgba(26, 15, 15, 1);
  border-color: rgba(148, 163, 184, 0.6);
}

@media (hover: none) {
  .product-card:active {
    transform: translateY(-2px) translateZ(0);
  }
}

.product-image {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(26, 15, 15, 0.5);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-tag {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.18);
  color: #fecaca;
  border: 1px solid rgba(220, 38, 38, 0.5);
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.product-desc {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.55rem;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
}

.product-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(220, 38, 38, 0.13);
  color: #fecaca;
  border: 1px solid rgba(220, 38, 38, 0.35);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  padding: 1.1rem 1.15rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #2a0f0f 0, #0a0202 60%);
  box-shadow: 0 14px 35px rgba(26, 15, 15, 0.82);
}

.step-number {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.faq details {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.7rem;
}

input,
textarea {
  background: rgba(26, 15, 15, 0.93);
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text);
  padding: 0.55rem 0.65rem;
  font-family: inherit;
  font-size: 0.85rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.5);
}

label {
  font-size: 0.78rem;
  color: var(--muted);
}

.site-footer {
  padding: 1.1rem 0 1.3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.96);
  position: relative;
  z-index: 5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.center {
  text-align: center;
}

.small {
  font-size: 0.75rem;
}

.hidden {
  display: none;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
  background: rgba(26, 15, 15, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

@keyframes float-orb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -40px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-30px, 30px, 0) scale(1.03);
  }
}

@keyframes flash-pulse {
  0%,
  45% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.55;
    transform: scale(1);
  }
  60% {
    opacity: 0.15;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-card {
    order: -1;
    max-width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 15, 15, 0.98), rgba(10, 2, 2, 0.98));
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 99;
    border-left: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 1rem;
    color: var(--text);
  }

  .nav a:hover {
    color: var(--accent);
    background: rgba(239, 68, 68, 0.1);
  }

  .nav a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

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

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-card {
    max-width: 100%;
    border-radius: 16px;
  }

  .hero-card-body {
    padding: 0.9rem 0.9rem 0.8rem;
  }

  .hero-card-body h2 {
    font-size: 0.95rem;
  }

  .featured-product-image {
    margin-bottom: 0.75rem;
  }

  .header-inner {
    padding-inline: 1rem;
  }

  .product-card {
    padding: 1rem;
  }

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

  .section {
    padding: 2.5rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .about-main {
    padding: 0 1rem;
  }

  .video-showcases {
    gap: 2rem;
  }

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

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

/* PayPal button container styling */
.paypal-button-container {
  margin-top: 0.5rem;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paypal-button-container iframe {
  max-width: 100%;
}

/* About Us Section */
.about-content {
  display: grid;
  gap: 2.5rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--accent);
  font-weight: 600;
}

/* Showcase Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.showcase-card {
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.15),
    rgba(26, 15, 15, 0.8)
  );
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  will-change: transform;
  transform: translateZ(0);
}

.showcase-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.3);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.2),
    rgba(15, 23, 42, 0.9)
  );
}

.showcase-card:active {
  transform: translateY(-2px) scale(1.01);
}

.showcase-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.showcase-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.showcase-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* About Page Styles */
.page-header {
  text-align: center;
  padding: 2rem 0;
}

.page-header h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-main {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-intro strong {
  color: var(--accent);
  font-weight: 600;
}

/* Partners Section */
.partners-section {
  margin-top: 4rem;
}

.partners-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.partner-card {
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.15),
    rgba(26, 15, 15, 0.8)
  );
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

.partner-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.partner-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: var(--text);
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* YouTube Channel Section */
.youtube-channel-section {
  margin-bottom: 3rem;
}

.channel-card {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.15),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.channel-card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.channel-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Video Showcases */
.video-showcases {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.video-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.video-showcase h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 15, 15, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description {
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(26, 15, 15, 0.8)
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

