:root {
    --accent-color: #00f2ff; /* неоново‑голубой вместо синего */
    --accent-muted: rgba(0, 242, 255, 0.45); /* полупрозрачный неоновый */
    --accent-neutral: rgba(0, 242, 255, 0.25); /* ещё более прозрачный */
}

.stripe-loading-indicator {
    height: 4px !important;
    background: linear-gradient(90deg, var(--accent-color), #ff00ff, #00ff8c);
    box-shadow: 0 0 10px var(--accent-color);
    border-radius: 2px;
}

.stripe-loading-indicator .stripe,
.stripe-loading-indicator .stripe-loaded {
    background: var(--accent-color) !important;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.steps-container {
    width: 1000px;
    display: flex;
    gap: 45px;
    padding: 30px;
    font-family: 'Minecraft Regular', monospace, sans-serif;
    background: rgba(10, 10, 26, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.step-item {
    flex: 0 1 auto;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    padding: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 242, 255, 0.4);
}

.step-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff00ff);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-color);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 15px var(--accent-color); }
    to { box-shadow: 0 0 25px #ff00ff; }
}

.step-content h4 {
    margin: 0 0 8px 0;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.skeleton-box {
    background-color: rgba(0, 242, 255, 0.15);
    border-radius: 6px;
    animation: shine 1.8s infinite linear;
}

@keyframes shine {
    0% { background-position: -100% 0; }
    50% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.bg-elegant {
    background-color: #0d0d21;
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 10px;
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.1);
}

.bg-elegant-night {
    background-color: #080814;
    border: 1px solid rgba(0, 242, 255, 0.15);
}

.shadow-dark {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 242, 255, 0.2) !important;
}

.border-0 {
    border: none !important;
}

.card {
    border-radius: 12px !important;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        #ff00ff,
        #00ff8c,
        var(--accent-color)
    );
    opacity: 0.08;
    filter: blur(8px);
    z-index: -1;
    border-radius: 12px;
}

.card:hover::before {
    opacity: 0.15;
    filter: blur(12px);
}

.mt-3 { margin-top: 1rem; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }
.h-100 { height: 100%; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.text-white { color: #fff !important; text-shadow: 0 0 3px var(--accent-color); }
.text-center { text-align: center !important; }
.text-lg-left { text-align: left !important; }

.d-flex { display: flex !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }

.gap-20px { gap: 20px !important; }
.w-100 { width: 100% !important; }
.max-width-1200px { max-width: 1200px !important; }
.margin-0-auto { margin: 0 auto !important; }
.padding-20px { padding: 20px !important; }

.font-weight-bolder { font-weight: bolder !important; }
.display-1 { font-size: 3rem; }
.h1 { font-size: 2.5rem; }
.h2 { font-size: 2rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.pt-7 { padding-top: 6rem !important; }

.section-md { padding: 3rem 0 !important; }
.section-sm { padding: 1.5rem 0 !important; }
.section-xl { padding: 6rem 0 !important; }

.wow { visibility: hidden; }
.fadeIn { animation-name: fadeIn; }
.fadeInLeftBig { animation-name: fadeInLeftBig; }

.animate-up-2 {
  position: relative;
  overflow: hidden;
  animation: neon-float 3s ease-in-out infinite;
  transform-origin: center;
}

/* Псевдоэлемент для неонового контура */
.animate-up-2::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: 
    linear-gradient(45deg, #00f2ff, #8000ff, #00f2ff);
  background-size: 400% 400%;
  filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

/* Анимация неонового свечения по краям */
@keyframes neon-float {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    filter: brightness(1.4) contrast(1.2);
  }
  75% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

/* Дополнительная анимация градиента (переливание цветов) */
.animate-up-2:hover::before,
.animate-up-2:focus::before {
  animation: neon-gradient 2s linear infinite;
}

@keyframes neon-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}






.badge {
    display: inline-block;
    min-width: 1em;
    padding: 0.3em 0.5em;
    font-size: 85%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.3rem;
    background: linear-gradient(45deg, var(--accent-color), #ff00ff);
    color: white;
    box-shadow: 0 0 8px var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pill {
    border-radius: 50px;
}

.text-uppercase {
    text-transform: uppercase !important;
    letter-spacing: 1px;
}

.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.fa-shopping-basket::before {
    content: "\f291";
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color), 0 0 10px rgba(0, 242, 255, 0.5);
}

.fa-question-circle::before {
    content: "\f059";
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px rgba(255, 0, 255, 0.5);
}

.fa-search::before {
    content: "\f002";
    color: #00ff8c;
    text-shadow: 0 0 5px #00ff8c, 0 0 10px rgba(0, 255, 140, 0.5);
}

.fa-times::before {
    content: "\f00d";
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, #0d0d21, #1a1a35);
    border-bottom: 1px solid var(--neon-blue);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px var(--neon-blue),
        0 0 40px rgba(0, 242, 255, 0.3);
    z-index: 1000;
    border-radius: 0 0 12px 12px;
}

.navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
}

.navbar-brand {
    display: inline-block;
    padding: 0.4rem 1.8rem;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--text-white);
    text-decoration: none;
    text-shadow:
        0 0 5px var(--neon-blue),
        0 0 15px var(--neon-blue),
        0 0 30px rgba(0, 242, 255, 0.6);
    transition: text-shadow 0.4s ease, transform 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow:
        0 0 10px var(--neon-blue),
        0 0 25px var(--neon-blue),
        0 0 50px var(--accent-glow);
}

.navbar-toggler {
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    color: var(--neon-blue);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 8px var(--neon-blue);
    backdrop-filter: blur(5px);
}

.navbar-toggler:hover {
    background-color: var(--neon-blue);
    color: #0d0d21;
    box-shadow: 0 0 15px var(--neon-blue), 0 0 30px rgba(0, 242, 255, 0.5);
    transform: translateY(-1px);
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    gap: 0.8rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1.2rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
	animation: none;
}

.nav-link.animate-up-2 {
    animation: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-blue),
        transparent
    );
    opacity: 0;
    filter: blur(3px);
    transform: scaleX(0);
    transition: opacity 0.3s, transform 0.4s;
}

.nav-link:hover {
    color: var(--neon-blue);
    background: rgba(0, 242, 255, 0.15);
    box-shadow: 0 0 15px var(--neon-blue);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.nav-link .nav-link-inner-text {
    position: relative;
}

.nav-link .nav-link-inner-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--neon-blue);
    transition: width 0.4s ease;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

.nav-link:hover .nav-link-inner-text::after {
    width: 100%;
}

/* Дополнительные неоновые эффекты */
.nav-link:active {
    transform: scale(0.98);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
}

.collapse {
    display: none;
}

.show {
    display: flex;
}

/* Дополнительные неоновые эффекты для интерактивных элементов */
.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 1rem;
    color: white;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.btn-neon:hover::before {
    opacity: 0.2;
}

.btn-neon:hover {
    color: #0d0d21;
    background: var(--accent-color);
    box-shadow: 0 0 18px var(--accent-color), 0 0 30px rgba(0, 242, 255, 0.6);
    transform: translateY(-2px);
}

.btn-neon:active {
    transform: translateY(0);
    box-shadow: 0 0 10px var(--accent-color);
}
