/* ========================================
   TOOLIFY DASHBOARD - CUSTOM STYLES
   Based on sample-best-practice-layout.html theme
   ======================================== */

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "TikTok Sans", sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  /* max-height: 100vh; */
  min-height: 100vh;
  height: auto;
}

/* Mobile: Enable scrolling */
@media (max-width: 768px) {
  body {
    overflow: auto;
    height: auto;
    max-height: none;
  }
}

/* ========== BACKGROUND GRADIENT SHAPES ========== */
.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Gradient Shape 1 - Top Right */
.gradient-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-image: url("../images/gradient-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  filter: blur(40px);
  animation: float 20s ease-in-out infinite;
}

/* Gradient Shape 2 - Bottom Left */
.gradient-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-image: url("../images/gradient-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  filter: blur(50px);
  animation: float 25s ease-in-out infinite reverse;
}

/* Subtle ambient glow in center */
.gradient-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.08) 0%,
    transparent 70%
  );
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

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

/* ========== MAIN CONTENT CONTAINER ========== */
.dashboard-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: none;
  overflow-y: visible;
  padding: 60px 80px;
}

/* Mobile: Adjust padding and enable full width */
@media (max-width: 768px) {
  .dashboard-content {
    padding: 20px 16px;
    height: auto;
    max-height: none;
    overflow-y: visible;
  }
}

.dashboard-content > div {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  /* background-color: red; */
}

/* ========== GLASSMORPHISM UTILITIES ========== */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ========== THEME COLORS (from analysis) ========== */
:root {
  --color-primary-green: #00ff88;
  --color-primary-green-dark: #00cc6a;
  --color-gold: #ffd700;
  --color-gold-dark: #ffb300;
  --color-dark-bg: #0a0a0a;
  --color-dark-surface: rgba(15, 15, 15, 0.95);
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== TRANSITIONS ========== */
* {
  transition: all 0.2s ease;
}

/* ========================================
   CARDS GRID LAYOUT
   ======================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* Base Card Styling */
.card {
  min-height: 240px;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
}

/* Card Icon */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.card-subscription .card-icon {
  background: rgba(0, 0, 0, 0.15);
}

.card-dark .card-icon {
  background: rgba(255, 255, 255, 0.05);
}

.card-icon i {
  font-size: 24px;
  color: var(--color-primary-green);
}

.card-subscription .card-icon i {
  color: rgba(0, 0, 0, 0.8);
}

/* Card Title */
.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.card-subscription .card-title {
  color: rgba(0, 0, 0, 0.9);
}

/* Subscription Period (Highlighted) */
.subscription-period {
  font-size: 28px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.2;
  margin: 2px 0 4px 0;
}

/* Subscription Expiry Text */
.subscription-expiry {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin: 0;
}

.subscription-expiry .highlight {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

/* Version Badge */
.version {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* Card Description */
.card-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* Download Button */
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.btn-download:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-download:active {
  transform: translateY(0);
}

.btn-download i {
  font-size: 16px;
}

/* Subscription Renew Button */
.btn-subscription-renew {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.btn-subscription-renew:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.btn-subscription-renew:active {
  transform: translateY(0);
}

.btn-subscription-renew i {
  font-size: 18px;
}

/* Video Card with Button Container */
.card-video {
  position: relative;
}

/* Video Buttons Container */
.video-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  /* flex-wrap: wrap; */
  /* flex-direction: row; */
  align-items: stretch;
  justify-content: space-between;
}

/* Primary Video Button (Macbook) */
.btn-video-primary {
  flex: 1;
  /* min-width: 140px; */
  padding: 12px 16px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-video-primary:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

.btn-video-primary:active {
  transform: translateY(0);
}

/* Outline Video Button (Windows) */
.btn-video-outline {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  background: transparent;
  color: var(--color-primary-green);
  border: 2px solid var(--color-primary-green);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-video-outline:hover {
  background: var(--color-primary-green);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

.btn-video-outline:active {
  transform: translateY(0);
}

/* Video Button Icons */
.btn-video-primary i,
.btn-video-outline i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .video-buttons {
    flex-direction: column;
  }

  .btn-video-primary,
  .btn-video-outline {
    min-width: unset;
    width: 100%;
  }
}

/* Premium Subscription Card */
.card-subscription {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
  color: black;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  margin-bottom: 4px !important;
  /* Darker variant for renew button */
  .dark-renew {
    background: #181818 !important;
    color: #fff !important;
    border-radius: 8px !important;
  }
  .rounded-btn {
    border-radius: 8px !important;
  }
}

.card-subscription:hover {
  box-shadow: 0 12px 32px rgba(0, 255, 136, 0.4);
}

.card-subscription h3 {
  color: black;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.card-subscription p {
  color: rgba(0, 0, 0, 0.8);
}

/* Shape Overlay for Subscription Card */
.card-shape-overlay {
  position: absolute;
  top: 35%;
  right: -2%;
  transform: translateY(-50%);
  width: 60%;
  height: 60%;
  background-image: url("../images/shape-1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

/* Shape Overlay for Dark Cards */
.card-shape-overlay-dark {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 50%;
  height: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.card-shape-overlay-dark.shape-2 {
  background-image: url("../images/shape-2.svg");
}

.card-shape-overlay-dark.shape-3 {
  background-image: url("../images/shape-3.svg");
}

/* Dark Cards (Download & Tutorial) */
.card-dark {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-dark h3 {
  color: white;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

/* Affiliate Commission Banner */
.banner-affiliate {
  margin-top: 32px;
  min-height: 180px;
  background: #16222a; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #3a6073,
    #16222a
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #3a6073,
    #16222a
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Banner Shape Overlay */
.banner-shape-overlay {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 120%;
  background-image: url("../images/shape-2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.banner-content-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.banner-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 255, 136, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon i {
  font-size: 28px;
  color: var(--color-primary-green);
}

.banner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.banner-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-green);
  line-height: 1.2;
}

.banner-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 8px 0 0 0;
  max-width: 420px;
}

.banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Primary Banner Button */
.btn-primary-banner {
  padding: 14px 24px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  z-index: 15;
}

.btn-primary-banner:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-primary-banner:active {
  transform: translateY(0);
}

/* Secondary Banner Button (Outline) */
.btn-secondary-banner {
  padding: 14px 24px;
  background: transparent;
  color: var(--color-primary-green);
  border: 2px solid var(--color-primary-green);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  z-index: 15;
}

.btn-secondary-banner:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #00b35c;
  color: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.2);
}

.btn-secondary-banner:active {
  transform: translateY(0);
}

/* Affiliate Commission Banner */
.banner-affiliate {
  margin-top: 32px;
  min-height: 180px;
  background: #16222a; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #3a6073,
    #16222a
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #3a6073,
    #16222a
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 255, 136, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon i {
  font-size: 28px;
  color: var(--color-primary-green);
}

.banner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.banner-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-green);
  line-height: 1.2;
}

.banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Primary Banner Button */
.btn-primary-banner {
  padding: 14px 24px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  z-index: 15;
}

.btn-primary-banner:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-primary-banner:active {
  transform: translateY(0);
}

/* Secondary Banner Button (Outline) */
.btn-secondary-banner {
  padding: 14px 24px;
  background: transparent;
  color: var(--color-primary-green);
  border: 2px solid var(--color-primary-green);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  z-index: 15;
}

.btn-secondary-banner:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #00b35c;
  color: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.2);
}

.btn-secondary-banner:active {
  transform: translateY(0);
}

/* Responsive Cards */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    gap: 20px;
    margin-top: 32px;
  }

  .card {
    min-height: 240px;
    padding: 20px;
  }

  /* Banner Responsive */
  .banner-affiliate {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    min-height: auto;
  }

  .banner-content-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-banner,
  .btn-secondary-banner {
    width: 100%;
  }

  .banner-amount {
    font-size: 28px;
  }
}

/* ========================================
   SIDEBAR STYLES - Magic Expandable
   ======================================== */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 80px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.sidebar:hover {
  width: 260px;
}

/* Logo Section */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 70px;
}

.logo-collapsed {
  height: 40px;
  width: auto;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: contain;
}

.logo-expanded {
  height: 40px;
  width: auto;
  display: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: contain;
}

.sidebar:hover .logo-collapsed {
  display: none;
}

.sidebar:hover .logo-expanded {
  display: block;
}

/* Navigation */
.sidebar-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* Menu Items */
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  margin: 6px 12px;
  border-radius: 10px;
}

.sidebar:hover .sidebar-item {
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px;
}

.sidebar-item i {
  font-size: 16px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sidebar-label {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.sidebar:hover .sidebar-label {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

/* Hover State */
.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

.sidebar:hover .sidebar-item:hover {
  transform: translateX(4px);
}

.sidebar-item:hover i {
  transform: scale(1.1);
  color: var(--color-primary-green);
}

/* Active State */
.sidebar-item.active {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border-radius: 10px;
}

.sidebar-item.active i {
  color: var(--color-primary-green);
  transform: scale(1.1);
}

/* ========================================
   SUBSCRIPTION CARD
   ======================================== */

.subscription-card-wrapper {
  margin: 0 12px 24px 12px;
  position: relative;
  height: 56px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar:hover .subscription-card-wrapper {
  height: auto;
  min-height: 140px;
}

/* Icon Only (Collapsed State) */
.subscription-icon-only {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--color-primary-green);
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.sidebar:hover .subscription-icon-only {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Full Card (Expanded State) */
.subscription-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}

.sidebar:hover .subscription-card {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Gradient Shape Overlay */
.subscription-card-gradient {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 50%;
  height: 50%;
  background-image: url("../images/gradient-2.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: blur(20px);
  pointer-events: none;
}

.subscription-card-content {
  position: relative;
  z-index: 1;
  color: white;
}

.subscription-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.subscription-title i {
  font-size: 12px;
  color: var(--color-primary-green);
}

.subscription-duration {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary-green);
}

.subscription-expire {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.expire-label {
  font-weight: 500;
  margin-bottom: 2px;
}

.expire-date {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.expire-time {
  font-weight: 500;
  margin-top: 1px;
}

/* Mobile - Always show full card */
@media (max-width: 768px) {
  .subscription-icon-only {
    display: none;
  }

  .subscription-card {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

/* Logout Section */
.sidebar-logout {
  padding: 16px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.logout-item {
  color: rgba(239, 68, 68, 0.8);
}

.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.logout-item:hover i {
  color: #ef4444;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.main-wrapper {
  margin-left: 80px;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  overflow: visible;
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .sidebar-label {
    opacity: 1;
    transform: translateX(0);
  }

  .logo-text {
    opacity: 1;
    transform: translateX(0);
  }

  .sidebar-overlay {
    display: block;
    pointer-events: none;
  }

  .main-wrapper {
    margin-left: 0;
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Stagger animation for menu items */
.sidebar:hover .sidebar-item:nth-child(1) .sidebar-label {
  transition-delay: 0.05s;
}

.sidebar:hover .sidebar-item:nth-child(2) .sidebar-label {
  transition-delay: 0.1s;
}

.sidebar:hover .sidebar-item:nth-child(3) .sidebar-label {
  transition-delay: 0.15s;
}

.sidebar:hover .sidebar-item:nth-child(4) .sidebar-label {
  transition-delay: 0.2s;
}

.sidebar:hover .sidebar-item:nth-child(5) .sidebar-label {
  transition-delay: 0.25s;
}

/* ========================================
   PROFILE COMPONENT
   ======================================== */

.dashboard-header {
  display: block;
  margin-bottom: 24px;
}

.profile-component {
  position: relative;
  flex-shrink: 0;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-info:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary-green);
}

.profile-info i {
  font-size: 28px;
  color: var(--color-primary-green);
}

.profile-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Profile Dropdown */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profile-component:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dropdown-item i {
  font-size: 16px;
  color: var(--color-primary-green);
  width: 20px;
}

.dropdown-item.logout:hover {
  background: rgba(255, 59, 48, 0.1);
}

.dropdown-item.logout:hover i {
  color: #ff3b30;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.whatsapp-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-button:hover {
  background: #20ba5a;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
  font-size: 28px;
  color: #ffffff;
}

/* WhatsApp Tooltip (Hover Only) */
.whatsapp-tooltip {
  padding: 10px 16px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  pointer-events: auto;
}

/* Tooltip Arrow */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(20, 20, 20, 0.95);
}

/* Responsive Profile & WhatsApp */
@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-component {
    order: -1;
  }

  .profile-dropdown {
    right: 0;
    left: auto;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ========================================
   MENU NAVIGATION CARDS
   ======================================== */

.menu-navigation {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-nav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
}

.menu-nav-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary-green);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
}

.menu-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-nav-left i {
  font-size: 24px;
  color: var(--color-primary-green);
  width: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-nav-card:hover .menu-nav-left i {
  transform: scale(1.1);
}

.menu-nav-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.menu-nav-arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-nav-card:hover .menu-nav-arrow {
  color: var(--color-primary-green);
  transform: translateX(4px);
}

/* Responsive Menu Navigation */
@media (max-width: 768px) {
  .menu-navigation {
    margin-top: 24px;
    gap: 12px;
  }

  .menu-nav-card {
    padding: 16px 20px;
  }

  .menu-nav-left i {
    font-size: 20px;
  }

  .menu-nav-title {
    font-size: 15px;
  }
}

/* ========================================
   EDIT PROFILE MODAL
   ======================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 500px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
  background: rgba(255, 59, 48, 0.1);
  border-color: #ff3b30;
  color: #ff3b30;
}

/* Modal Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: "TikTok Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Password Input Wrapper */
.input-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-password-wrapper .form-input {
  padding-right: 48px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-password:hover {
  color: var(--color-primary-green);
}

.toggle-password i {
  font-size: 16px;
}

/* Form Error State */
.form-group.error .form-input {
  border-color: #ff3b30;
}

.form-error {
  font-size: 13px;
  color: #ff3b30;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

/* Form Success State */
.form-group.success .form-input {
  border-color: var(--color-primary-green);
}

/* Submit Button */
.btn-submit-modal {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
}

.btn-submit-modal:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-submit-modal:active {
  transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    padding: 24px;
    max-height: 85vh;
  }

  .modal-title {
    font-size: 20px;
  }

  .form-input {
    padding: 10px 14px;
    font-size: 14px;
  }

  .btn-submit-modal {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Scrollbar for Modal */
.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SUCCESS MODAL
   ======================================== */

.success-modal-container {
  width: 90%;
  max-width: 400px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .success-modal-container {
  transform: scale(1);
}

.success-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--color-primary-green) 0%, #00cc6a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.6s ease-out;
}

.success-modal-icon i {
  font-size: 40px;
  color: #0a0a0a;
}

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

.success-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.success-modal-message {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-modal-button {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--color-primary-green) 0%, #00cc6a 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.success-modal-button:active {
  transform: translateY(0);
}

/* ========== UPLOAD TURNITIN STYLES ========== */
.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.file-upload-area:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.file-upload-area.drag-over {
  border-color: var(--color-primary-green, #10b981);
  background: rgba(16, 185, 129, 0.1);
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.file-upload-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.4);
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-upload-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.file-upload-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.file-input {
  display: none;
}

.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.file-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.file-icon {
  font-size: 1.5rem;
  color: var(--color-primary-green, #10b981);
}

.file-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.file-name {
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.file-size {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.file-remove {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-remove:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.4);
}

.radio-group {
  margin-bottom: 1rem;
}

.radio-group-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.radio-options {
  display: flex;
  gap: 1.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--color-primary-green, #10b981);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary-green, #10b981);
  border-radius: 50%;
}

.radio-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.radio-option:hover .radio-custom {
  border-color: rgba(255, 255, 255, 0.5);
}

.radio-option:hover .radio-text {
  color: white;
}

.item-similarity {
  color: var(--color-primary-green, #10b981);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Mobile responsive for upload turnitin */
@media (max-width: 768px) {
  .file-upload-area {
    padding: 1.5rem;
  }

  .file-upload-icon {
    font-size: 2.5rem;
  }

  .file-upload-main {
    font-size: 1rem;
  }

  .file-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .radio-options {
    gap: 1rem;
  }
}

/* ========================================
   SUBSCRIBE PAGE - FORM STYLES
   ======================================== */

.subscribe-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

/* Package Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
}

.package-card.active {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(0, 255, 136, 0.4);
}

.package-card.active i {
  color: #00ff88 !important;
}

/* Package Badge */
.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
}

.package-badge.best {
  background: linear-gradient(135deg, #ffd700, #ffa500);
}

/* Package Icon */
.package-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card.active .package-icon {
  background: rgba(0, 0, 0, 0.2);
}

.package-icon i {
  font-size: 24px;
  color: var(--color-primary-green);
}

.package-card.active .package-icon i {
  color: rgba(0, 0, 0, 0.8);
}

/* Package Content */
.package-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.package-duration {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.package-card.active .package-duration {
  color: #ffffff;
}

.package-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-green);
}

.package-card.active .package-price {
  color: #ffffff;
}

.package-save {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary-green);
  padding: 3px 10px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

.package-card.active .package-save {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
}

.package-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.package-card.active .package-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Form Select Dropdown */
.select-wrapper {
  position: relative;
}

.form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: "TikTok Sans", sans-serif;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-select:focus {
  outline: none;
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  font-size: 14px;
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-primary-green);
}

.checkbox-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Voucher Input */
.voucher-input-section {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voucher-feedback {
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.voucher-feedback.success {
  color: var(--color-primary-green);
  display: block;
}

.voucher-feedback.error {
  color: #ff3b30;
  display: block;
}

/* Info Text */
.info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.info-link {
  color: var(--color-primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-link:hover {
  color: #00b35c;
  text-decoration: underline;
}

/* Subscribe Button */
.btn-subscribe {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-primary-green);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
}

.btn-subscribe:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-subscribe:active {
  transform: translateY(0);
}

.btn-subscribe:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Subscribe Form */
@media (max-width: 768px) {
  .subscribe-form-container {
    padding: 24px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .package-content {
    align-items: center;
  }

  .package-save {
    margin: 0 auto;
  }

  .section-title {
    font-size: 16px;
  }

  .btn-subscribe {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Form Label and Input */
.form-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: "TikTok Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   QRIS PAYMENT CARD
   ======================================== */

.qris-payment {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Header */
.qris-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qris-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.qris-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.qris-status-badge.pending {
  background: rgba(255, 149, 0, 0.15);
  color: #ff9500;
  border: 1px solid rgba(255, 149, 0, 0.3);
}

.qris-status-badge i {
  font-size: 12px;
}

/* QR Code Section */
.qris-code-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qris-code-wrapper {
  width: 280px;
  height: 280px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qris-code-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qris-scan-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0;
}

/* Timer */
.qris-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: 8px;
  color: #ff3b30;
  font-size: 15px;
  font-weight: 600;
}

.qris-timer i {
  font-size: 16px;
}

.qris-timer strong {
  font-size: 18px;
  color: #ff3b30;
}

/* Instructions */
.qris-instructions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.instructions-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.instructions-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instructions-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.instructions-list li strong {
  color: var(--color-primary-green);
  font-weight: 600;
}

.instructions-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 255, 136, 0.1);
  border-left: 3px solid var(--color-primary-green);
  border-radius: 6px;
  margin-top: 8px;
}

.instructions-note i {
  color: var(--color-primary-green);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.instructions-note span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Transaction Details */
.qris-transaction-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.details-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

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

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.detail-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}

/* Responsive QRIS */
@media (max-width: 768px) {
  .qris-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .qris-code-wrapper {
    width: 240px;
    height: 240px;
  }

  .qris-title {
    font-size: 20px;
  }
}

/* ========================================
   PAYMENT SUCCESS PAGE
   ======================================== */

.success-page-wrapper {
  /* messi goat */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
  margin-top: 72px;
  width: 100%;
}

.success-container {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: successFadeIn 0.6s ease-out;
}

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

/* Success Icon */
.success-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.success-icon-circle i {
  font-size: 48px;
  color: #0a0a0a;
}

.success-pulse {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-primary-green);
  opacity: 0;
  animation: successPulse 2s ease-out infinite;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Success Text */
.success-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.success-message {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Success Details Card */
.success-details-card {
  width: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-details-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.success-detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.success-detail-label i {
  font-size: 14px;
  color: var(--color-primary-green);
  width: 16px;
}

.success-detail-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

.success-price {
  color: var(--color-primary-green);
  font-size: 16px;
  font-weight: 700;
}

.success-tx-id {
  font-family: "Courier New", monospace;
  font-size: 13px;
}

/* Success Info Box */
.success-info-box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 255, 136, 0.1);
  border-left: 3px solid var(--color-primary-green);
  border-radius: 8px;
}

.success-info-box i {
  color: var(--color-primary-green);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.success-info-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Success Actions */
.success-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn-success-primary,
.btn-success-secondary {
  width: 100%;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-success-primary {
  background: var(--color-primary-green);
  color: #0a0a0a;
}

.btn-success-primary:hover {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-success-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-success-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-success-primary i,
.btn-success-secondary i {
  font-size: 16px;
}

/* Responsive Success Page */
@media (max-width: 768px) {
  .success-container {
    padding: 32px 24px;
  }

  .success-icon-circle {
    width: 100px;
    height: 100px;
  }

  .success-icon-circle i {
    font-size: 40px;
  }

  .success-pulse {
    width: 100px;
    height: 100px;
  }

  .success-title {
    font-size: 26px;
  }

  .success-message {
    font-size: 15px;
  }

  .success-details-card {
    padding: 20px;
  }

  .success-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .success-detail-value {
    text-align: left;
  }
}

/* ========================================
   SUBSCRIPTION HISTORY PAGE
   ======================================== */

/* Page Header */
.history-header {
  margin-bottom: 32px;
}

.history-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.history-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* History List */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

/* History Card */
.history-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Active Card - Full Gradient */
.history-card.active {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}

.history-card.active:hover {
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
}

/* Card Content Layout */
.history-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.history-card-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

/* History Icon */
.history-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-card.active .history-icon {
  background: rgba(0, 0, 0, 0.15);
}

.history-icon i {
  font-size: 20px;
  color: var(--color-primary-green);
}

.history-card.active .history-icon i {
  color: rgba(0, 0, 0, 0.7);
}

/* History Info */
.history-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.history-package {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.history-card.active .history-package {
  color: rgba(0, 0, 0, 0.9);
}

.history-details {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  
}

.history-card.active .history-details {
  color: rgba(0, 0, 0, 0.6);
}

/* Card Actions */
.history-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Status Badge */
.history-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.history-status-badge.active {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.8);
}

.history-status-badge.expired {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.history-status-badge i {
  font-size: 10px;
}

/* Download Button */
.history-download-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.history-download-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-primary-green);
  transform: scale(1.05);
}

.history-card.active .history-download-btn {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.7);
}

.history-card.active .history-download-btn:hover {
  background: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.9);
}

.history-download-btn i {
  font-size: 16px;
}

/* Pagination */
.history-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: "TikTok Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary-green);
  color: var(--color-primary-green);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn i {
  font-size: 12px;
}

.pagination-pages {
  display: flex;
  gap: 8px;
}

.pagination-page {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  font-family: "TikTok Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-page:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary-green);
  color: var(--color-primary-green);
}

.pagination-page.active {
  background: var(--color-primary-green);
  border-color: var(--color-primary-green);
  color: #0a0a0a;
}

/* Responsive History */
@media (max-width: 768px) {
  .history-title {
    font-size: 26px;
  }

  .history-subtitle {
    font-size: 14px;
  }

  .history-card {
    padding: 16px;
  }

  .history-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .history-card-main {
    width: 100%;
  }

  .history-card-actions {
    width: 100%;
    justify-content: space-between;
  }

  .history-icon {
    width: 40px;
    height: 40px;
  }

  .history-icon i {
    font-size: 18px;
  }

  .history-package {
    font-size: 16px;
  }

  .history-details {
    font-size: 13px;
  }

  .history-pagination {
    flex-direction: column;
    gap: 16px;
  }

  .pagination-btn {
    width: 100%;
    justify-content: center;
  }

  .pagination-pages {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   AFFILIATE PAGE
   ======================================== */

/* Page Header */
.affiliate-header {
  margin-bottom: 32px;
}

.affiliate-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.affiliate-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Program Info + Link Card */
.affiliate-info-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: #16222a;
  background: -webkit-linear-gradient(to right, #3a6073, #16222a);
  background: linear-gradient(to right, #3a6073, #16222a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliate-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.affiliate-info-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 24px;
}

.affiliate-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.affiliate-info-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.affiliate-link-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.affiliate-link-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.affiliate-link-wrapper {
  display: flex;
  gap: 12px;
}

.affiliate-link-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: "TikTok Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliate-link-input:focus {
  outline: none;
  border-color: var(--color-primary-green);
  background: rgba(255, 255, 255, 0.1);
}

.affiliate-copy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-primary-green);
  border: none;
  border-radius: 8px;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  font-family: "TikTok Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliate-copy-btn:hover {
  background: #00b35c;
  transform: scale(1.02);
}

.affiliate-copy-btn:active {
  transform: scale(0.98);
}

/* Stats Cards Row */
.affiliate-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.affiliate-stat-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliate-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.affiliate-stat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
}

.affiliate-stat-card.pending .affiliate-stat-icon {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.affiliate-stat-card.paid .affiliate-stat-icon {
  background: rgba(0, 255, 136, 0.15);
  color: var(--color-primary-green);
}

/* Add gradient background and shape overlay for paid card */
.affiliate-stat-card.paid {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  position: relative;
  overflow: visible;
}

.affiliate-stat-card.paid::before {
  content: "";
  position: absolute;
  top: 35%;
  right: -10%;
  transform: translateY(-50%);
  width: 60%;
  height: 60%;
  background-image: url("../images/shape-3.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.affiliate-stat-card.paid .affiliate-stat-content {
  position: relative;
  z-index: 2;
}

.affiliate-stat-card.paid .affiliate-stat-icon {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.affiliate-stat-card.paid .affiliate-stat-title {
  color: rgba(0, 0, 0, 0.7);
}

.affiliate-stat-card.paid .affiliate-stat-amount {
  color: rgba(0, 0, 0, 0.9);
}

.affiliate-stat-card.paid .affiliate-stat-info {
  color: rgba(0, 0, 0, 0.6);
}

.affiliate-stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.affiliate-stat-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.affiliate-stat-amount {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.affiliate-stat-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.affiliate-withdraw-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-family: "TikTok Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 12px;
  position: relative;
  z-index: 2;
  width: calc(100% + 76px);
  margin-left: -76px;
  text-align: center;
}

.affiliate-withdraw-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.02);
}

.affiliate-withdraw-btn:active {
  transform: scale(0.98);
}

/* Users List Card */
.affiliate-users-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 32px;
}

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

.affiliate-users-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.affiliate-users-count {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

/* Table */
.affiliate-table-wrapper {
  overflow-x: auto;
}

.affiliate-table {
  width: 100%;
  border-collapse: collapse;
}

.affiliate-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.affiliate-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.affiliate-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliate-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.affiliate-table tbody tr:last-child {
  border-bottom: none;
}

.affiliate-table td {
  padding: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* User Cell */
.affiliate-user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.affiliate-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.affiliate-user-name {
  font-weight: 600;
  color: #ffffff;
}

/* Status Badge */
.affiliate-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.affiliate-status-badge.active {
  background: rgba(0, 255, 136, 0.15);
  color: var(--color-primary-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.affiliate-status-badge i {
  font-size: 11px;
}

/* Commission */
.affiliate-commission {
  font-weight: 700;
}

.affiliate-commission.paid {
  color: var(--color-primary-green);
}

.affiliate-commission.pending {
  color: rgba(255, 255, 255, 0.5);
}

/* Pagination */
.affiliate-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

/* Responsive Affiliate */
@media (max-width: 968px) {
  .affiliate-stats-row {
    grid-template-columns: 1fr;
  }
}

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

  .affiliate-subtitle {
    font-size: 14px;
  }

  .affiliate-info-card {
    flex-direction: column;
    padding: 24px;
  }

  .affiliate-link-wrapper {
    flex-direction: column;
  }

  .affiliate-copy-btn {
    justify-content: center;
  }

  .affiliate-stat-card {
    padding: 24px;
  }

  .affiliate-users-card {
    padding: 20px;
  }

  .affiliate-users-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .affiliate-table-wrapper {
    margin: 0 -20px;
  }

  .affiliate-table {
    min-width: 600px;
  }

  .affiliate-pagination {
    flex-direction: column;
    gap: 16px;
  }

  .pagination-btn {
    width: 100%;
    justify-content: center;
  }

  .pagination-pages {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   WITHDRAW PAGE
   ======================================== */

/* Page Header */
.withdraw-header {
  margin-bottom: 32px;
}

.withdraw-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.withdraw-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Balance Card */
.withdraw-balance-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1),
    rgba(0, 204, 106, 0.1)
  );
  border: 2px solid var(--color-primary-green);
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.withdraw-balance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

.withdraw-balance-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 28px;
}

.withdraw-balance-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.withdraw-balance-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.withdraw-balance-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary-green);
  line-height: 1;
}

.withdraw-balance-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.withdraw-balance-info i {
  font-size: 12px;
}

/* Form Card */
.withdraw-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.withdraw-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.withdraw-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.withdraw-form-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.withdraw-form-select,
.withdraw-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: "TikTok Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.withdraw-form-select:focus,
.withdraw-form-input:focus {
  outline: none;
  border-color: var(--color-primary-green);
  background: rgba(255, 255, 255, 0.1);
}

.withdraw-form-select option {
  background: #1a1a1a;
  color: #ffffff;
}

.withdraw-form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Remove number input arrows */
.withdraw-form-input[type="number"]::-webkit-inner-spin-button,
.withdraw-form-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.withdraw-form-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.withdraw-form-error {
  font-size: 13px;
  color: #ff4444;
  margin-top: -5px;
  min-height: 18px;
}

/* History Link */
.withdraw-history-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.withdraw-history-link a {
  color: var(--color-primary-green);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.withdraw-history-link a:hover {
  color: #00b35c;
  text-decoration: underline;
}

/* Submit Button */
.withdraw-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--color-primary-green);
  border: none;
  border-radius: 8px;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 700;
  font-family: "TikTok Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.withdraw-submit-btn:hover:not(:disabled) {
  background: #00b35c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.withdraw-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.withdraw-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.withdraw-submit-btn i {
  font-size: 18px;
}

/* Responsive Withdraw */
@media (max-width: 768px) {
  .withdraw-title {
    font-size: 26px;
  }

  .withdraw-subtitle {
    font-size: 14px;
  }

  .withdraw-balance-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .withdraw-balance-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .withdraw-balance-amount {
    font-size: 32px;
  }

  .withdraw-balance-info {
    justify-content: center;
  }

  .withdraw-form-card {
    padding: 24px;
  }

  .withdraw-history-link {
    text-align: center;
  }
}

/* ========================================
   WITHDRAW SUCCESS PAGE - STATUS BADGE
   ======================================== */

.success-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-status-badge.processing {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* ========================================
   VIDEO TUTORIAL MODAL
   ======================================== */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal-container {
  position: relative;
  width: 85%;
  max-width: 900px;
  max-height: 80vh;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 20px 0;
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-green);
  border: none;
  color: #0a0a0a;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.video-modal-close:hover {
  background: #00b35c;
  transform: rotate(90deg) scale(1.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
  .video-modal-container {
    width: 95%;
    padding: 15px;
  }

  .video-modal-close {
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ========================================
   AUTH PAGES STYLING
   ======================================== */

/* Auth Page Wrapper */
.auth-page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  margin-top: 72px;
}

.auth-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Register Container (Wider for 2 columns) */
.auth-container.register-container {
  max-width: 1000px;
}

/* Logo */
.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo img {
  height: 50px;
  width: auto;
}

/* Auth Card */
.auth-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Auth Title */
.auth-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Auth Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label i {
  color: var(--color-primary-green);
  font-size: 1rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .form-input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.password-toggle:hover {
  color: var(--color-primary-green);
}

/* Form Row Between */
.form-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.5rem;
}

/* Remember Checkbox */
.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.remember-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary-green);
}

/* Forgot Password Link */
.forgot-password-link {
  color: var(--color-primary-green);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.forgot-password-link:hover {
  color: #00cc6a;
  text-decoration: underline;
}

/* Primary Button Full Width */
.btn-primary-full {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc6a 100%
  );
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
  margin-top: 0.5rem;
}

.btn-primary-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 136, 0.4);
}

.btn-primary-full:active {
  transform: translateY(0);
}

/* Auth Footer Link */
.auth-footer-link {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.auth-footer-link a {
  color: var(--color-primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-footer-link a:hover {
  color: #00cc6a;
  text-decoration: underline;
}

/* ========================================
   REGISTER PAGE (2 COLUMN LAYOUT)
   ======================================== */

.register-card {
  padding: 3rem 2.5rem 2.5rem;
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.register-form-column .auth-title {
  text-align: left;
  font-size: 1.5rem;
}

.register-form-column .auth-subtitle {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Package Column */
.register-package-column {
  display: flex;
  flex-direction: column;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Package Cards Wrapper */
.package-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Package Card */
.package-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateX(5px);
}

.package-card.active {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.15) 0%,
    rgba(0, 204, 106, 0.1) 100%
  );
  border: 2px solid var(--color-primary-green);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

/* Package Badge */
.package-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.package-badge.best {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc6a 100%
  );
  box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.package-duration {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.package-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-green);
  line-height: 1.2;
}

.price-per-month {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.package-features {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.package-features i {
  color: var(--color-primary-green);
  font-size: 0.9rem;
}

/* Register Footer */
.register-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* Terms Checkbox */
.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.terms-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-primary-green);
  flex-shrink: 0;
}

.terms-checkbox a {
  color: var(--color-primary-green);
  text-decoration: none;
  font-weight: 600;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE AUTH PAGES
   ======================================== */

@media (max-width: 768px) {
  .auth-page-wrapper {
    padding: 1.5rem 1rem;
  }

  .auth-card {
    padding: 2rem 1.5rem;
  }

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

  /* Register Page Mobile */
  .register-card {
    padding: 2rem 1.5rem 1.5rem;
  }

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

  .register-form-column .auth-title {
    text-align: center;
  }

  .register-form-column .auth-subtitle {
    text-align: center;
  }

  /* Package Cards - Horizontal Scroll */
  .package-cards-wrapper {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .package-cards-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .package-cards-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  .package-cards-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.3);
    border-radius: 3px;
  }

  .package-card {
    min-width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .package-card:hover {
    transform: translateY(-3px);
  }

  .package-title {
    text-align: center;
    font-size: 1.15rem;
  }

  .package-subtitle {
    text-align: center;
  }

  .form-row-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .auth-logo img {
    height: 40px;
  }

  .auth-card {
    padding: 1.75rem 1.25rem;
  }

  .auth-title {
    font-size: 1.35rem;
  }

  .register-card {
    padding: 1.75rem 1.25rem 1.25rem;
  }

  .package-card {
    min-width: 200px;
  }
}

/* ========================================
   REGISTER PAGE - PAYMENT METHOD
   ======================================== */

/* Payment Method Section */
.payment-method-section {
  margin-top: 2rem;
}

/* Payment Method Card */
.payment-method-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.15) 0%,
    rgba(0, 204, 106, 0.1) 100%
  );
  border: 2px solid var(--color-primary-green);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.payment-method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 136, 0.3);
}

/* Payment Method Icon */
.payment-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-method-icon i {
  font-size: 1.5rem;
  color: #0a0a0a;
}

.payment-method-icon .qris-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Payment Method Content */
.payment-method-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.payment-method-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.payment-method-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Payment Method Check Icon */
.payment-method-check {
  flex-shrink: 0;
}

.payment-method-check i {
  font-size: 1.5rem;
  color: var(--color-primary-green);
}

/* ========================================
   RESPONSIVE - PAYMENT METHOD
   ======================================== */

@media (max-width: 768px) {
  .payment-method-section {
    margin-top: 1.5rem;
  }

  .payment-method-card {
    padding: 1rem 1.25rem;
  }

  .payment-method-icon {
    width: 40px;
    height: 40px;
  }

  .payment-method-icon i {
    font-size: 1.25rem;
  }

  .payment-method-icon .qris-logo {
    width: 24px;
    height: 24px;
  }

  .payment-method-name {
    font-size: 1rem;
  }

  .payment-method-check i {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .payment-method-card {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .payment-method-icon {
    width: 36px;
    height: 36px;
  }

  .payment-method-icon i {
    font-size: 1.1rem;
  }

  .payment-method-icon .qris-logo {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   DOWNLOAD PAGE STYLING
   ======================================== */

/* Download Page Wrapper */
.download-page-wrapper {
  margin-top: 72px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-left: 0;
  width: 100%;
  min-height: calc(100vh - 136px);
}

.download-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo */
.download-logo {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-logo img {
  height: 50px;
  width: auto;
}

/* Download Card */
.download-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

/* Download Header */
.download-header {
  text-align: center;
  margin-bottom: 2rem;
}

.download-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.download-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Download Limit Section */
.download-limit-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.limit-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.limit-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-green);
}

/* Progress Bar */
.limit-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.limit-progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary-green) 0%,
    #00cc6a 100%
  );
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Download Form */
.download-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Download Button Primary */
.btn-download-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc6a 100%
  );
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

.btn-download-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 136, 0.4);
}

.btn-download-primary:active {
  transform: translateY(0);
}

/* Warning Notes */
.download-notes {
  background: rgba(251, 191, 36, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.download-notes i {
  color: #fbbf24;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Download History Card */
.download-history-card {
  padding: 2rem;
}

.history-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Download List */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Download Item */
.download-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateX(5px);
}

/* Download Item Icon */
.download-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-item-icon i {
  font-size: 1.25rem;
  color: var(--color-primary-green);
}

/* Download Item Info */
.download-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.download-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
}

.download-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.item-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Download Item Button */
.btn-download-item {
  background: transparent;
  border: 2px solid var(--color-primary-green);
  color: var(--color-primary-green);
  border-radius: 10px;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-download-item:hover {
  background: var(--color-primary-green);
  color: #0a0a0a;
  transform: scale(1.05);
}

.btn-download-item i {
  font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DOWNLOAD PAGE
   ======================================== */

@media (max-width: 768px) {
  .download-page-wrapper {
    padding: 1.5rem 1rem;
  }

  .download-card {
    padding: 2rem 1.5rem;
  }

  .download-title {
    font-size: 1.75rem;
  }

  .download-subtitle {
    font-size: 0.95rem;
  }

  .download-limit-section {
    padding: 1.25rem;
  }

  .download-history-card {
    padding: 1.5rem;
  }

  .history-title {
    font-size: 1.35rem;
  }

  /* Download Item Mobile */
  .download-item {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .download-item-icon {
    width: 40px;
    height: 40px;
  }

  .download-item-icon i {
    font-size: 1.1rem;
  }

  .download-item-info {
    flex: 1;
    min-width: 0;
  }

  .download-item-name {
    font-size: 0.95rem;
  }

  .download-item-meta {
    font-size: 0.8rem;
  }

  .btn-download-item {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .download-logo img {
    height: 40px;
  }

  .download-card {
    padding: 1.5rem 1.25rem;
  }

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

  .download-limit-section {
    padding: 1rem;
  }

  .limit-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .download-notes {
    padding: 0.875rem 1rem;
    font-size: 0.85rem;
  }

  .btn-download-primary {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .download-item {
    padding: 0.875rem;
  }

  .download-item-icon {
    width: 36px;
    height: 36px;
  }

  .download-item-icon i {
    font-size: 1rem;
  }
}

/* Download History Card - Notes Adjustment */
.download-history-card .download-notes {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .download-history-card .download-notes {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .download-history-card .download-notes {
    margin-bottom: 1rem;
  }
}

/* ===== LOGIN MANUAL PAGE STYLES ===== */
.login-manual-card {
  background: linear-gradient(
    135deg,
    rgba(18, 20, 28, 0.95) 0%,
    rgba(25, 28, 38, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.login-manual-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.login-manual-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-manual-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0;
  letter-spacing: -0.02em;
}

/* Warning Box - Yellow Style */
.login-manual-warning {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.15) 0%,
    rgba(202, 138, 4, 0.1) 100%
  );
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.login-manual-warning .warning-icon {
  flex-shrink: 0;
  color: #fbbf24;
  font-size: 1.25rem;
  padding-top: 0.125rem;
}

.login-manual-warning .warning-text {
  color: #fef3c7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.login-manual-warning .warning-text strong {
  color: #fef9e3;
  font-weight: 600;
}

/* Credential Section */
.credential-section {
  margin-bottom: 1.25rem;
}

.credential-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.credential-label i {
  color: var(--color-primary-green);
  font-size: 0.875rem;
}

.credential-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.credential-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.credential-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.copy-credential-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  border: none;
  border-radius: 12px;
  color: #12141c;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.copy-credential-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
  background: linear-gradient(135deg, #00ff88 0%, #00e67a 100%);
}

.copy-credential-btn:active {
  transform: translateY(0);
}

.copy-credential-btn i {
  font-size: 0.875rem;
}

/* Login Manual Primary Button */
.login-manual-btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  border: none;
  border-radius: 12px;
  color: #12141c;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-manual-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  background: linear-gradient(135deg, #00ff88 0%, #00e67a 100%);
}

.login-manual-btn-primary:active {
  transform: translateY(0);
}

.login-manual-btn-primary i {
  font-size: 1.1rem;
}

/* Mobile Responsive - Login Manual */
@media (max-width: 768px) {
  .login-manual-card {
    padding: 2rem;
    max-width: 100%;
  }

  .login-manual-inner {
    padding: 1.5rem;
  }

  .login-manual-header h2 {
    font-size: 1.5rem;
  }

  .credential-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .copy-credential-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-manual-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .login-manual-inner {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .login-manual-header h2 {
    font-size: 1.35rem;
  }

  .login-manual-warning {
    padding: 0.875rem 1rem;
    font-size: 0.85rem;
    gap: 0.75rem;
  }

  .login-manual-warning .warning-icon {
    font-size: 1.1rem;
  }

  .credential-input {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .copy-credential-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .login-manual-btn-primary {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* Login Manual - Outer Card with Centered Logo */
.login-manual-outer-card {
  background: linear-gradient(
    135deg,
    rgba(18, 20, 28, 0.95) 0%,
    rgba(25, 28, 38, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.login-manual-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.login-manual-logo img {
  max-width: 180px;
  height: auto;
  display: inline-block;
}

/* Login Manual - Inner Card (nested) */
.login-manual-outer-card .login-manual-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: none;
  max-width: none;
}

/* Download Page - Form Section Full Width */
.download-form-section {
  width: 100%;
  margin-bottom: 2rem;
}

.download-form-section .download-header {
  text-align: center;
  margin-bottom: 2rem;
}

.download-form-section .download-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin-bottom: 0.5rem;
}

.download-form-section .download-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.download-form-section .download-limit-section,
.download-form-section .download-form {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.download-form-section .download-limit-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

.download-form-section .form-group {
  margin-bottom: 1.5rem;
}

/* Mobile Responsive - Login Manual Outer Card */
@media (max-width: 768px) {
  .login-manual-outer-card {
    padding: 2rem;
  }

  .login-manual-logo img {
    max-width: 150px;
  }

  .login-manual-outer-card .login-manual-card {
    padding: 1.5rem;
  }

  .download-form-section .download-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .login-manual-outer-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .login-manual-logo {
    margin-bottom: 1.5rem;
  }

  .login-manual-logo img {
    max-width: 130px;
  }

  .login-manual-outer-card .login-manual-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

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

  .download-form-section .download-subtitle {
    font-size: 0.9rem;
  }
}

/* ===== PLAYGROUND PAGE STYLES ===== */

/* Playground Sections */
.pg-section {
  margin-bottom: 3rem;
}

.pg-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin-bottom: 1.5rem;
}

.pg-section-title i {
  font-size: 1.25rem;
}

/* Page Shortcuts Grid */
.pg-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.pg-shortcut-card {
  background: linear-gradient(
    135deg,
    rgba(18, 20, 28, 0.8) 0%,
    rgba(25, 28, 38, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.pg-shortcut-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-green);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.pg-shortcut-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #12141c;
}

.pg-shortcut-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* Component Card */
.pg-component-card {
  background: linear-gradient(
    135deg,
    rgba(18, 20, 28, 0.8) 0%,
    rgba(25, 28, 38, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.pg-component-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: center;
}

.pg-preview-column {
  flex-direction: column;
  align-items: stretch;
}

/* Playground Buttons */
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.pg-btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  color: #12141c;
}

.pg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.pg-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.pg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.pg-btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
}

.pg-btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.pg-btn-outline-danger {
  background: transparent;
  border: 2px solid #ef4444;
  color: #ef4444;
}

.pg-btn-outline-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #dc2626;
  color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
}

/* Toast Notifications */
.pg-toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.pg-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.pg-toast-success {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  color: #12141c;
}

.pg-toast-warning {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  color: #12141c;
}

.pg-toast-danger {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
}

.pg-toast i {
  font-size: 1.1rem;
}

/* Alert Boxes */
.pg-alert {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.pg-alert-success {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15) 0%,
    rgba(22, 163, 74, 0.1) 100%
  );
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pg-alert-success .pg-alert-icon {
  color: #4ade80;
}

.pg-alert-success .pg-alert-content {
  color: #d1fae5;
}

.pg-alert-warning {
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.15) 0%,
    rgba(202, 138, 4, 0.1) 100%
  );
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.pg-alert-warning .pg-alert-icon {
  color: #fbbf24;
}

.pg-alert-warning .pg-alert-content {
  color: #fef3c7;
}

.pg-alert-danger {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.15) 0%,
    rgba(185, 28, 28, 0.1) 100%
  );
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.pg-alert-danger .pg-alert-icon {
  color: #ef4444;
}

.pg-alert-danger .pg-alert-content {
  color: #fecaca;
}

.pg-alert-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  padding-top: 0.125rem;
}

.pg-alert-content {
  font-size: 0.9rem;
  line-height: 1.5;
}

.pg-alert-content strong {
  font-weight: 600;
}

/* Input Fields */
.pg-input-group {
  margin-bottom: 1rem;
  width: 100%;
}

.pg-input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.pg-input-label i {
  color: var(--color-primary-green);
  font-size: 0.875rem;
}

.pg-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.pg-input:focus {
  outline: none;
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.pg-input-readonly {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.03);
}

.pg-input-with-button {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.pg-input-with-button .pg-input {
  flex: 1;
}

.pg-input-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  border: none;
  border-radius: 12px;
  color: #12141c;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pg-input-copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* Textarea */
.pg-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  resize: vertical;
  font-family: inherit;
}

.pg-textarea:focus {
  outline: none;
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

/* Modal */
.pg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.pg-modal.show {
  opacity: 1;
  pointer-events: all;
}

.pg-modal-content {
  background: linear-gradient(
    135deg,
    rgba(18, 20, 28, 0.95) 0%,
    rgba(25, 28, 38, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.pg-modal.show .pg-modal-content {
  transform: scale(1);
}

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

.pg-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0;
}

.pg-modal-close {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-modal-close:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.4);
  color: #ef4444;
}

.pg-modal-body {
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.pg-modal-body p {
  margin-bottom: 1rem;
}

.pg-modal-body p:last-child {
  margin-bottom: 0;
}

.pg-modal-footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-end;
}

/* Code Block */
.pg-code-block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.pg-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pg-code-header span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pg-copy-code-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pg-copy-code-btn:hover {
  background: var(--color-primary-green);
  color: #12141c;
  border-color: var(--color-primary-green);
}

.pg-copy-code-btn i {
  font-size: 0.75rem;
}

.pg-code-content {
  padding: 1rem;
  margin: 0;
  overflow-x: auto;
}

.pg-code-content code {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre;
  display: block;
}

/* Mobile Responsive - Playground */
@media (max-width: 768px) {
  .pg-shortcuts-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .pg-shortcut-card {
    padding: 1.25rem;
  }

  .pg-shortcut-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .pg-component-card {
    padding: 1.5rem;
  }

  .pg-component-preview {
    padding: 1.5rem;
    flex-direction: column;
  }

  .pg-input-with-button {
    flex-direction: column;
  }

  .pg-input-copy-btn {
    width: 100%;
    justify-content: center;
  }

  .pg-toast {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .pg-modal-footer {
    flex-direction: column;
  }

  .pg-modal-footer .pg-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pg-section-title {
    font-size: 1.25rem;
  }

  .pg-shortcuts-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .pg-shortcut-card {
    padding: 1rem;
  }

  .pg-shortcut-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .pg-shortcut-label {
    font-size: 0.8rem;
  }

  .pg-component-card {
    padding: 1.25rem;
  }

  .pg-component-preview {
    padding: 1.25rem;
  }

  .pg-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .pg-code-content code {
    font-size: 0.75rem;
  }
}

/* ===== PAYMENT PAGE STYLES ===== */

/* Payment Card */
.payment-card {
  background: linear-gradient(
    135deg,
    rgba(18, 20, 28, 0.95) 0%,
    rgba(25, 28, 38, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Two Column Layout */
.payment-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left Column */
.payment-left-column {
  display: flex;
  flex-direction: column;
}

/* Right Column */
.payment-right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

/* Payment Header - Full Width */
.payment-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin-bottom: 1rem;
}

.payment-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.payment-status-badge.pending {
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.15) 0%,
    rgba(202, 138, 4, 0.1) 100%
  );
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fbbf24;
}

.payment-status-badge i {
  font-size: 1rem;
}

/* QR Code Section */
.payment-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.payment-qr-wrapper {
  width: 250px;
  height: 250px;
  padding: 1rem;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.payment-qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-qr-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
}

/* Transaction Details Card */
.payment-details-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.payment-details-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

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

.payment-detail-row:last-child {
  border-bottom: none;
}

.payment-detail-row.total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-detail-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.payment-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.payment-detail-row.total .payment-detail-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.payment-detail-row.total .payment-detail-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-green);
}

/* Payment Instructions */
.payment-instructions {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.payment-instructions-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-green);
  margin-bottom: 1rem;
}

.payment-instructions-title i {
  font-size: 1.1rem;
}

.payment-instructions-list {
  margin: 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.payment-instructions-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.payment-instructions-list li:last-child {
  margin-bottom: 0;
}

.payment-instructions-list strong {
  color: var(--color-primary-green);
  font-weight: 600;
}

/* Payment Action Buttons */
.payment-actions {
  display: flex;
  gap: 1rem;
}

.payment-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.payment-btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    #00cc70 100%
  );
  color: #12141c;
}

.payment-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.payment-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.payment-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Payment Tutorial Section */
.payment-tutorial {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-tutorial-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-green);
  margin-bottom: 1.5rem;
  text-align: center;
  justify-content: center;
}

.payment-tutorial-title i {
  font-size: 1.125rem;
}

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

.tutorial-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.tutorial-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-green), #059669);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Mobile Responsive - Payment Page */
@media (max-width: 768px) {
  .payment-card {
    padding: 2rem;
  }

  /* Stack columns on mobile */
  .payment-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .payment-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

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

  .payment-qr-section {
    padding: 1.5rem;
  }

  .payment-tutorial-steps {
    grid-template-columns: 1fr;
  }

  .tutorial-step {
    padding: 1.25rem;
  }

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .payment-qr-wrapper {
    width: 220px;
    height: 220px;
  }

  .payment-actions {
    flex-direction: column;
  }

  .payment-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .payment-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .payment-title {
    font-size: 1.35rem;
  }

  .payment-status-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
  }

  .payment-qr-section {
    padding: 1.25rem;
  }

  .payment-qr-wrapper {
    width: 200px;
    height: 200px;
    padding: 0.75rem;
  }

  .payment-details-card {
    padding: 1.25rem;
  }

  .payment-instructions {
    padding: 1.25rem;
  }

  .payment-instructions-list {
    font-size: 0.85rem;
    padding-left: 1.25rem;
  }

  .payment-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 72px;
}

/* Navbar with centered menu (for 404 page) */
.navbar-centered {
  justify-content: center !important;
  gap: 3rem;
}

.navbar-centered .navbar-menu {
  margin: 0 auto;
}

/* Logo Section */
.navbar-logo img {
  height: 40px;
  width: auto;
}

/* Desktop Menu Navigation */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.navbar-item:hover {
  color: white;
}

.navbar-item.active {
  color: white;
  border-bottom: 2px solid white;
}

/* User Profile Section */
.navbar .navbar-profile {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 120px;
  height: auto !important;
  z-index: 1000 !important;
}

/* Desktop specific rule */
@media (min-width: 769px) {
  .navbar .navbar-profile {
    display: flex !important;
    visibility: visible !important;
  }
}

@media (max-width: 768px) {
  .navbar .navbar-profile {
    display: none !important;
    visibility: hidden !important;
  }
}

.navbar .navbar-profile .profile-dropdown {
  position: relative;
}

.navbar .navbar-profile .profile-trigger {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: white !important;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
  min-height: 40px;
  white-space: nowrap;
}

.navbar .navbar-profile .profile-trigger:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.navbar .navbar-profile .profile-username {
  font-weight: 500;
  color: white !important;
  display: inline-block !important;
}

.navbar .navbar-profile .profile-trigger i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: white !important;
  display: inline-block !important;
}

.navbar .navbar-profile .profile-dropdown.active .profile-trigger i {
  transform: rotate(180deg);
}

/* Profile Dropdown Menu */
.profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.profile-dropdown.active .profile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.profile-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.profile-menu-item.logout {
  color: #ff4757;
}

.profile-menu-item.logout:hover {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}

.profile-menu-item i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Mobile Menu Toggle */
.navbar-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-mobile-toggle {
    display: block !important;
  }
}

.navbar-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== NAVBAR AUTH ACTIONS ========== */
.navbar-auth-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.auth-btn-secondary {
  color: #a1a1aa;
  background: transparent;
  border-color: #374151;
}

.auth-btn-secondary:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border-color: #6b7280;
}

.auth-btn-primary {
  color: #000000;
  background: var(--color-primary-green, #10b981);
  border-color: var(--color-primary-green, #10b981);
  font-weight: 600;
}

.auth-btn-primary:hover {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Mobile responsive for auth buttons */
@media (max-width: 768px) {
  .navbar-auth-actions {
    display: none;
  }
}

/* ========== AUTH CARD LOGO ========== */
.auth-card-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-card-logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.auth-card-logo img:hover {
  opacity: 1;
}

/* ========== FOOTER STYLES ========== */
.footer {
  width: 100%;
  z-index: 100;
  margin-top: auto;
}

.footer-sticky {
  position: relative;
  /* margin-top: 16px; */
}

.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-content {
  text-align: center;
  padding: 2rem 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-separator {
    display: none;
  }

  .footer-content {
    padding: 1.5rem 1rem;
  }
}

/* ========== LEGAL PAGES STYLES ========== */
.legal-page-wrapper {
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.legal-container {
  width: 100%;
  max-width: 800px;
  padding: 2rem 0;
}

.legal-content {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.legal-logo {
  margin-bottom: 1.5rem;
}

.legal-logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-align: center;
}

.legal-body {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.legal-intro {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary-green, #10b981);
}

.legal-intro p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.legal-section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-content {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-link {
  color: var(--color-primary-green, #10b981);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #22c55e;
  transform: translateY(-1px);
}

.contact-link i {
  font-size: 1.1rem;
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .legal-title {
    font-size: 1.6rem;
  }

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

  .legal-intro p {
    font-size: 1rem;
  }
}

/* ========== DMCA SPECIFIC STYLES ========== */
.dmca-steps {
  margin-top: 1.5rem;
}

.dmca-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary-green, #10b981);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

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

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary-green, #10b981);
  transform: translateY(-2px);
}

.contact-option i {
  font-size: 1.5rem;
  color: var(--color-primary-green, #10b981);
  width: 24px;
  text-align: center;
}

.contact-option div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-option strong {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.contact-option span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Mobile responsive for DMCA */
@media (max-width: 768px) {
  .dmca-step {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .step-number {
    align-self: flex-start;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }
}

/* ========== TERMS & CONDITIONS SPECIFIC STYLES ========== */
.important-notice,
.warning-notice,
.recommendation-notice {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.important-notice {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.important-notice i {
  color: #f59e0b;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.warning-notice {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.warning-notice i {
  color: #ef4444;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.recommendation-notice {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.recommendation-notice i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.recommendation-notice div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.recommendation-notice strong {
  color: #dbeafe;
  font-weight: 600;
}

/* Mobile responsive for notices */
@media (max-width: 768px) {
  .important-notice,
  .warning-notice,
  .recommendation-notice {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .recommendation-notice {
    gap: 0.75rem;
  }
}

/* ========== 404 ERROR PAGE STYLES ========== */
.error-page-wrapper {
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.error-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.error-content {
  padding: 2rem 1rem;
}

.error-image {
  margin-bottom: 2rem;
}

.error-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.error-text {
  margin-bottom: 2.5rem;
}

.error-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.error-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  justify-content: center;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.error-btn-primary {
  background: var(--color-primary-green, #10b981);
  color: #000;
  border: 2px solid var(--color-primary-green, #10b981);
}

.error-btn-primary:hover {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.error-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.error-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Mobile responsive for 404 page */
@media (max-width: 768px) {
  .error-content {
    padding: 1.5rem 1rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .error-image img {
    max-width: 250px;
  }
}

/* Mobile Menu */
.navbar-mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99999;
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.navbar-mobile-menu.active {
  transform: translateX(0);
}

.navbar-mobile-item {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.navbar-mobile-item:hover {
  color: white;
  padding-left: 1rem;
}

.navbar-mobile-item.active {
  color: var(--color-primary-green);
  border-left: 3px solid var(--color-primary-green);
  padding-left: 1rem;
}

.navbar-mobile-item.logout {
  color: #ff4757;
}

.navbar-mobile-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

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

  .navbar-menu {
    display: none !important;
  }
}

/* Adjust main content for navbar */
.main-wrapper {
  margin-top: 72px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-left: 0;
  width: 100%;
  min-height: calc(100vh - 136px);
}

@media (max-width: 768px) {
  .main-wrapper {
    margin-top: 72px;
    padding-top: 1rem;
    padding-bottom: 2rem;
    min-height: calc(100vh - 136px);
  }
}

/* ===== USER PROFILE SECTION (NEW SIMPLIFIED) ===== */
.user-profile-section {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 150px !important;
  height: auto !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 4px !important;
}

.user-profile-trigger {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
  cursor: pointer !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  font-family: inherit !important;
  min-height: 40px !important;
  white-space: nowrap !important;
  width: 100% !important;
  justify-content: space-between !important;
}

.user-profile-trigger:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.user-profile-username {
  font-weight: 500 !important;
  color: white !important;
  display: inline-block !important;
  font-size: 14px !important;
}

.user-profile-trigger i {
  font-size: 0.8rem !important;
  transition: transform 0.3s ease !important;
  color: white !important;
  display: inline-block !important;
}

.user-profile-trigger.active i {
  transform: rotate(180deg) !important;
}

.user-profile-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  background: rgba(20, 20, 20, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 8px !important;
  padding: 0.5rem !important;
  min-width: 200px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  z-index: 10001 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.3s ease !important;
  display: block !important;
}

.user-profile-menu.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.user-profile-menu-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.75rem 1rem !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.3s ease !important;
}

.user-profile-menu-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.user-profile-menu-item i {
  width: 16px !important;
  text-align: center !important;
}

.user-profile-menu-item.logout:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  color: #ef4444 !important;
}

/* Mobile responsive untuk user profile */
@media (max-width: 768px) {
  .user-profile-section {
    display: none !important;
  }
}

/* ===== OTP INPUT STYLES ===== */

/* OTP Input Group */
.otp-input-group {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 2rem 0;
  justify-content: center;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: "TikTok Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.otp-input:focus {
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  transform: scale(1.05);
}

.otp-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.otp-error {
  text-align: center;
  margin: 1rem 0;
}

.otp-error .form-error {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Resend OTP Section */
.resend-otp-section {
  text-align: center;
  margin: 1.5rem 0;
}

.resend-timer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.btn-resend {
  background: transparent;
  border: 1px solid var(--color-primary-green);
  color: var(--color-primary-green);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.btn-resend:hover:not(:disabled) {
  background: var(--color-primary-green);
  color: #000;
  transform: translateY(-2px);
}

.btn-resend:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile Responsive for OTP */
@media (max-width: 480px) {
  .otp-input-group {
    gap: 8px;
  }

  .otp-input {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
