* {
    font-family: 'Inter', sans-serif;
}

/* ширина скроллбара */
::-webkit-scrollbar {
  width: 10px;
}

/* трек (фон) */
::-webkit-scrollbar-track {
  background: transparent;
}

/* сам ползунок */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff5f63, #ff8a8e);
  border-radius: 999px;
}

/* ховер — чуть ярче */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff4a50, #ff7b80);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ff5f63 transparent;
}

.gradient-text {
    background: linear-gradient(135deg, #ff5f63 0%, #ff8a8e 50%, #ffb3b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    box-shadow: 0 0 40px rgba(255, 95, 99, 0.3);
}

.protocol-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.protocol-card:hover {
    border-color: rgba(255, 95, 99, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 95, 99, 0.2);
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(255, 95, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.grid-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255, 255, 255, 0.03) 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(255, 95, 99, 0.2) 0%, rgba(255, 138, 142, 0.2) 100%);
}

.pricing-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
    border-color: #ff5f63;
    box-shadow: 0 0 30px rgba(255, 95, 99, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff5f63 0%, #ff8a8e 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 95, 99, 0.4);
}

.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);
}
