/* Пастельная тёмная палитра для девушек 18-20 */
:root {
    --bg-dark: #1a1625;
    --bg-card: #252035;
    --bg-card-hover: #2d2742;
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-pastel: rgba(248, 180, 196, 0.25);
    --text-primary: #f5e6f0;
    --text-muted: #b8a9c4;
    --accent-pink: #f5a0a8;
    --accent-lavender: #c4b5fd;
    --accent-mint: #a7f3d0;
    --accent-peach: #fcd5b5;
}

* {
    font-family: 'Nunito', sans-serif;
}

/* Mobile nav: show menu or close icon */
.menu-toggle .nav-icon-close {
    opacity: 0;
    pointer-events: none;
}
.menu-toggle.is-open .nav-icon-menu {
    opacity: 0;
    pointer-events: none;
}
.menu-toggle.is-open .nav-icon-close {
    opacity: 1;
    pointer-events: auto;
}

/* Мобильное меню: показ через класс */
#mobile-menu.is-open {
    transform: translateY(0) !important;
}

/* ширина скроллбара */
::-webkit-scrollbar {
  width: 10px;
}

/* трек (фон) */
::-webkit-scrollbar-track {
  background: transparent;
}

/* сам ползунок */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f5a0a8, #c4b5fd);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f8b4bc, #a78bfa);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #f5a0a8 transparent;
}

.gradient-text {
    background: linear-gradient(135deg, #f5a0a8 0%, #f8b8bc 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    box-shadow: 0 0 40px rgba(245, 160, 168, 0.25);
}

.protocol-card {
    background: rgba(37, 32, 53, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(248, 180, 196, 0.15);
    transition: all 0.3s ease;
}

.protocol-card:hover {
    border-color: rgba(245, 160, 168, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(196, 181, 253, 0.15);
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(245, 160, 168, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 181, 253, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(167, 243, 208, 0.06) 0%, transparent 35%);
}

.grid-bg {
    background-image: linear-gradient(rgba(248, 180, 196, 0.04) 1px, transparent 1px),
              linear-gradient(90deg, rgba(248, 180, 196, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.feature-icon {
    background: linear-gradient(135deg, rgba(245, 160, 168, 0.25) 0%, rgba(196, 181, 253, 0.2) 100%);
}

.pricing-card {
    background: rgba(37, 32, 53, 0.9);
    border: 1px solid rgba(248, 180, 196, 0.2);
}

.pricing-card.popular {
    border-color: rgba(245, 160, 168, 0.5);
    box-shadow: 0 0 30px rgba(245, 160, 168, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #f5a0a8 0%, #f8b8bc 100%);
    color: #1a1625 !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 160, 168, 0.35);
}

.stats-counter {
    font-variant-numeric: tabular-nums;
}

.text-coral-400 {
    color: #ff8a8e;
}

.text-coral-500 {
    color: #ff5f63;
}

.bg-coral-500\/10 {
    background-color: rgba(255, 95, 99, 0.1);
}

.bg-coral-500\/20 {
    background-color: rgba(255, 95, 99, 0.2);
}

.border-coral-500\/20 {
    border-color: rgba(255, 95, 99, 0.2);
}

.border-coral-500\/50 {
    border-color: rgba(255, 95, 99, 0.5);
}

.shadow-coral-500\/5 {
    --tw-shadow-color: rgba(255, 95, 99, 0.05);
}

.from-coral-500 {
    --tw-gradient-from: #ff5f63;
    --tw-gradient-to: rgb(255 95 99 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-coral-600 {
    --tw-gradient-to: #ff8a8e;
}

.via-coral-400 {
    --tw-gradient-to: rgb(255 138 142 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #ff8a8e, var(--tw-gradient-to);
}

.modal-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: scale(0.95) translateY(10px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}
