/**
 * Modal de Solicitud de Empleo - Estilos y Animaciones
 * Metro Life RP - Desarrollado por Mercurio & Melman
 */

/* =========================================
   APPLICATION MODAL - BASE
   ========================================= */
.application-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}

.application-modal.active {
  display: flex;
  animation: fadeInModal 0.3s ease;
}

.app-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.app-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(6, 182, 212, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.app-modal-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.app-modal-body {
  padding: 40px 25px 30px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.app-modal-body::-webkit-scrollbar {
  width: 5px;
}

.app-modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.app-modal-body::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.5);
  border-radius: 3px;
}

.app-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.7);
}

/* =========================================
   PUBLIC JOB CONTENT (Comando)
   ========================================= */
.public-content {
  width: 100%;
  animation: slideInPublic 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.public-content .content-header {
  text-align: center;
  margin-bottom: 30px;
}

.public-content .content-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow:
    0 10px 30px rgba(6, 182, 212, 0.4),
    inset 0 -3px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite, rotate360 3s linear infinite;
}

.public-content .content-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.public-content .content-subtitle {
  font-size: 14px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* Command Box */
.command-box {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #06b6d4;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(6, 182, 212, 0.2),
    inset 0 0 20px rgba(6, 182, 212, 0.05);
  animation: borderGlow 2s infinite;
}

.command-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  animation: scanLine 3s linear infinite;
}

.command-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  color: #06b6d4;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.command-display {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  margin-bottom: 15px;
  user-select: all;
  cursor: text;
  animation: flicker 3s infinite;
}

.command-copy-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.command-copy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.command-copy-btn:hover::before {
  left: 100%;
}

.command-copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.command-copy-btn:active {
  transform: scale(0.95);
}

.command-copy-btn.copied {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  animation: successPulse 0.6s;
}

/* Instructions */
.instructions-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.instruction-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease backwards;
}

.instruction-item:nth-child(1) {
  animation-delay: 0.1s;
}

.instruction-item:nth-child(2) {
  animation-delay: 0.2s;
}

.instruction-item:nth-child(3) {
  animation-delay: 0.3s;
}

.instruction-item:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
  transform: translateX(5px);
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.step-text {
  flex: 1;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.4;
}

/* =========================================
   PRIVATE JOB CONTENT (Discord)
   ========================================= */
.private-content {
  width: 100%;
  animation: slideInPrivate 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.private-content .content-header {
  text-align: center;
  margin-bottom: 30px;
}

.private-content .content-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow:
    0 15px 40px rgba(88, 101, 242, 0.5),
    inset 0 -4px 15px rgba(0, 0, 0, 0.3);
  animation: floatBounce 3s ease-in-out infinite, pulseGlow 2s infinite;
  position: relative;
}

.private-content .content-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #5865f2;
  opacity: 0.5;
  animation: ringExpand 2s infinite;
}

.private-content .content-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.private-content .content-subtitle {
  font-size: 14px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.private-content .highlight {
  color: #5865f2;
  font-weight: 700;
}

/* Discord Box */
.discord-box {
  background: rgba(88, 101, 242, 0.08);
  border: 2px solid rgba(88, 101, 242, 0.3);
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
  animation: borderPulse 3s infinite;
}

.discord-header {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.discord-body {
  padding: 25px 20px;
}

.discord-body p {
  color: #e2e8f0;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.discord-body strong {
  color: #5865f2;
  font-weight: 700;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid #5865f2;
  border-radius: 6px;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.5s ease backwards;
}

.requirements-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.requirements-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.requirements-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.requirements-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.requirements-list li:hover {
  background: rgba(88, 101, 242, 0.1);
  transform: translateX(5px);
  border-left-width: 5px;
}

.requirements-list i {
  color: #5865f2;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.requirements-list span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

/* Warning Box */
.warning-box {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(202, 138, 4, 0.1) 100%);
  border: 2px solid rgba(234, 179, 8, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 20px;
  animation: warningPulse 2s infinite;
}

.warning-box i {
  color: #eab308;
  font-size: 28px;
  flex-shrink: 0;
  animation: warningBlink 2s infinite;
}

.warning-content strong {
  display: block;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.warning-content p {
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInPublic {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInPrivate {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow:
      0 0 30px rgba(6, 182, 212, 0.2),
      inset 0 0 20px rgba(6, 182, 212, 0.05);
  }

  50% {
    box-shadow:
      0 0 40px rgba(6, 182, 212, 0.4),
      inset 0 0 30px rgba(6, 182, 212, 0.1);
  }
}

@keyframes scanLine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow:
      0 15px 40px rgba(88, 101, 242, 0.5),
      inset 0 -4px 15px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow:
      0 15px 50px rgba(88, 101, 242, 0.7),
      inset 0 -4px 15px rgba(0, 0, 0, 0.3);
  }
}

@keyframes ringExpand {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes borderPulse {

  0%,
  100% {
    border-color: rgba(88, 101, 242, 0.3);
  }

  50% {
    border-color: rgba(88, 101, 242, 0.6);
  }
}

@keyframes warningPulse {

  0%,
  100% {
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 0 0 rgba(234, 179, 8, 0);
  }

  50% {
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
  }
}

@keyframes warningBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* =========================================
   VIP JOB CONTENT (Compra Premium)
   ========================================= */
.vip-content {
  width: 100%;
  animation: slideInVip 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vip-content .content-header {
  text-align: center;
  margin-bottom: 30px;
}

.vip-content .content-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #000;
  box-shadow:
    0 15px 40px rgba(251, 191, 36, 0.6),
    inset 0 -4px 15px rgba(0, 0, 0, 0.2);
  animation: rotateGem 10s linear infinite, pulseGlowVip 2s infinite;
}

.vip-content .content-title {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, #fbbf24 0%, #ffcd08 50%, #fbbf24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: shimmer 3s linear infinite;
}

.vip-content .content-subtitle {
  font-size: 14px;
  color: #94a3b8;
}

.vip-content .highlight-vip {
  color: #fbbf24;
  font-weight: 700;
}

.vip-box {
  background: rgba(251, 191, 36, 0.08);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
  animation: borderPulseVip 3s infinite;
}

.vip-header {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vip-body {
  padding: 25px 20px;
}

.vip-body p {
  color: #e2e8f0;
  font-size: 14px;
  margin-bottom: 15px;
}

.vip-body strong {
  color: #fbbf24;
  font-weight: 700;
}

.vip-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid #fbbf24;
  border-radius: 6px;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.5s ease backwards;
}

.vip-steps-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.vip-steps-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.vip-steps-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.vip-steps-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.vip-steps-list li:hover {
  background: rgba(251, 191, 36, 0.1);
  transform: translateX(5px);
  border-left-width: 5px;
}

.vip-steps-list i {
  color: #fbbf24;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vip-steps-list span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

/* Terms Warning Box - ROJO IMPORTANTE */
.terms-warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
  border: 3px solid #ef4444;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 20px;
  animation: dangerPulse 2s infinite;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.warning-icon-container {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dangerBlink 1.5s infinite;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.warning-icon-container i {
  color: #fff;
  font-size: 28px;
  animation: shake 0.5s infinite;
}

.warning-content-vip strong.warning-title-vip {
  display: block;
  color: #ff0000;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  animation: warningTextBlink 2s infinite;
}

.warning-text-vip {
  color: #fee2e2;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.warning-text-vip strong {
  color: #fca5a5;
  font-weight: 800;
  text-decoration: underline;
}

/* VIP Animations */
@keyframes slideInVip {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotateGem {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@keyframes pulseGlowVip {

  0%,
  100% {
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6), inset 0 -4px 15px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.9), inset 0 -4px 15px rgba(0, 0, 0, 0.2);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes borderPulseVip {

  0%,
  100% {
    border-color: rgba(251, 191, 36, 0.3);
  }

  50% {
    border-color: rgba(251, 191, 36, 0.6);
  }
}

@keyframes dangerPulse {

  0%,
  100% {
    border-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
  }

  50% {
    border-color: #ff0000;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
  }
}

@keyframes dangerBlink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  75% {
    transform: translateX(2px);
  }
}

@keyframes warningTextBlink {

  0%,
  100% {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }

  50% {
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 1), 0 0 25px rgba(255, 0, 0, 0.8);
  }
}

/* =========================================
   RESPONSIVE - IMPROVED
   ========================================= */
@media (max-width: 640px) {
  .application-modal {
    padding: 10px;
  }

  .app-modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }

  .app-modal-body {
    padding: 35px 18px 25px;
  }

  .public-content .content-icon,
  .private-content .content-icon,
  .vip-content .content-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .public-content .content-title,
  .private-content .content-title,
  .vip-content .content-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .public-content .content-subtitle,
  .private-content .content-subtitle,
  .vip-content .content-subtitle {
    font-size: 12px;
  }

  .content-header {
    margin-bottom: 20px;
  }

  .command-box {
    padding: 15px;
    margin: 15px 0;
  }

  .command-display {
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 12px;
  }

  .command-copy-btn {
    padding: 10px;
    font-size: 12px;
  }

  .instruction-item {
    padding: 10px;
    gap: 10px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .step-text {
    font-size: 12px;
  }

  .discord-box,
  .vip-box {
    margin: 15px 0;
  }

  .discord-header,
  .vip-header {
    padding: 10px 14px;
    font-size: 11px;
  }

  .discord-body,
  .vip-body {
    padding: 15px 12px;
  }

  .discord-body p,
  .vip-body p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .requirements-list,
  .vip-steps-list {
    gap: 8px;
  }

  .requirements-list li,
  .vip-steps-list li {
    padding: 10px;
    gap: 10px;
  }

  .requirements-list i,
  .vip-steps-list i {
    font-size: 15px;
  }

  .requirements-list span,
  .vip-steps-list span {
    font-size: 11px;
  }

  .warning-box {
    padding: 14px;
    gap: 12px;
    margin-top: 15px;
  }

  .warning-box i {
    font-size: 22px;
  }

  .warning-content strong {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .warning-content p {
    font-size: 11px;
  }

  .terms-warning-box {
    padding: 14px;
    gap: 12px;
  }

  .warning-icon-container {
    width: 40px;
    height: 40px;
  }

  .warning-icon-container i {
    font-size: 22px;
  }

  .warning-content-vip strong.warning-title-vip {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .warning-text-vip {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .app-modal-body {
    padding: 30px 14px 20px;
  }

  .public-content .content-icon,
  .private-content .content-icon,
  .vip-content .content-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .public-content .content-title,
  .private-content .content-title,
  .vip-content .content-title {
    font-size: 16px;
  }

  .command-display {
    font-size: 12px;
    word-break: break-all;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) {
  .application-modal {
    padding: 5px;
  }

  .app-modal-content {
    max-height: 98vh;
  }

  .app-modal-body {
    padding: 30px 18px 20px;
  }

  .content-header {
    margin-bottom: 12px;
  }

  .public-content .content-icon,
  .private-content .content-icon,
  .vip-content .content-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .public-content .content-title,
  .private-content .content-title,
  .vip-content .content-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .command-box,
  .discord-box,
  .vip-box {
    margin: 10px 0;
  }

  .instruction-item,
  .requirements-list li,
  .vip-steps-list li {
    padding: 8px;
  }

  .warning-box,
  .terms-warning-box {
    margin-top: 10px;
    padding: 10px;
  }
}