@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
html::-webkit-scrollbar {
    display: none; 
}

:root {
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #0D0D0D;
    --bg-card: #1A1A1A;
    --color-red: #CC0000;
    --color-red-dark: #8B0000;
    --color-red-darker: #660000;
    --color-red-hover: #990000;
    --color-red-hover-dark: #4D0000;
    --color-white: #FFFFFF;
    --color-gray: #909090;
    --color-text: #b0b0b0;
    --gradient-red: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #CC0000 100%);
    --gradient-text: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%);
    --gradient-btn: linear-gradient(135deg, #CC0000 0%, #8B0000 25%, #660000 50%, #8B0000 75%, #CC0000 100%);
    --gradient-btn-hover: linear-gradient(135deg, #990000 0%, #660000 25%, #4D0000 50%, #660000 75%, #990000 100%);
    --gradient-border: linear-gradient(to right, rgba(204,0,0,0) 0%, rgba(204,0,0,0.85) 25%, rgba(204,0,0,0) 50%, rgba(204,0,0,0.85) 75%, rgba(204,0,0,0) 100%);
}

@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes lineShine {
    0% { stroke-dashoffset: 2000; opacity: 0.2; }
    50% { opacity: 0.6; }
    100% { stroke-dashoffset: 0; opacity: 0.2; }
}
@keyframes lineGlow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(204, 0, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(204, 0, 0, 0.6)); }
}
@keyframes gradientFlow1 {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes gradientFlow2 {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes gradientPulse {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.2) saturate(1.3); }
}
@keyframes textGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes borderGradientFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
@keyframes borderPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.03); }
}
@keyframes loaderGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(204,0,0,0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(204,0,0,0.7)); }
}
@keyframes loaderFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
#page-loader.loaded {
    animation: loaderFadeOut 0.5s ease forwards;
}
#page-loader .loader-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    animation: loaderPulse 1.8s ease-in-out infinite, loaderGlow 1.8s ease-in-out infinite;
    margin-bottom: 20px;
}
#page-loader .loader-ring {
    display: none;
}
#page-loader .loader-text {
    font-family: 'Cinzel', serif;
    color: #CC0000;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.8;
}
#page-loader .loader-bar-wrapper {
    width: 220px;
    height: 2px;
    background: rgba(204,0,0,0.12);
    border-radius: 2px;
    overflow: hidden;
}
#page-loader .loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #CC0000, #ff3333, #CC0000);
    background-size: 200% 100%;
    animation: gradientFlow1 1.5s ease infinite;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.animated-border-bottom {
    position: relative;
    border-bottom: none !important;
    border-image: none !important;
}
.animated-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-border);
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}
.animated-border-top {
    position: relative;
    border-top: none !important;
    border-image: none !important;
}
.animated-border-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-border);
    background-size: 200% 100%;
    animation: borderGradientFlow 4s linear infinite;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate.slide-left {
    transform: translateX(-20px);
}
.scroll-animate.slide-left.is-visible {
    transform: translateX(0);
}
.fade-in-element {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion) {
    .scroll-animate, .fade-in-element, .fade-in, .animate-on-scroll {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

body {
    background-color: var(--bg-black);
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: transparent;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.5)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='8s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='8s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 200 Q 400 80 800 250 T 2000 200' stroke='url(%23g1)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.4)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='12s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='12s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 600 Q 500 750 900 600 T 2000 650' stroke='url(%23g2)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g3' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.55)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='6s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='6s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 900 Q 300 1050 700 900 T 2000 950' stroke='url(%23g3)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g4' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.35)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='15s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='15s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 1200 Q 600 1300 1000 1200 T 2000 1250' stroke='url(%23g4)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g5' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.45)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='10s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='10s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 1500 Q 450 1650 900 1500 T 2000 1600' stroke='url(%23g5)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g6' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.3)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='18s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='18s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 400 Q 550 450 900 350 T 2000 400' stroke='url(%23g6)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='2000'%3E%3Cdefs%3E%3ClinearGradient id='g7' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(204,0,0,0)'/%3E%3Cstop offset='50%25' stop-color='rgba(204,0,0,0.6)'/%3E%3Cstop offset='100%25' stop-color='rgba(204,0,0,0)'/%3E%3Canimate attributeName='x1' values='-100%25;100%25;-100%25' dur='7s' repeatCount='indefinite'/%3E%3Canimate attributeName='x2' values='0%25;200%25;0%25' dur='7s' repeatCount='indefinite'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 1000 Q 450 1150 850 1000 T 2000 1050' stroke='url(%23g7)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
}

img {
    filter: none !important;
    animation: none !important;
}

nav.navbar {
    background-color: var(--bg-black);
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    overflow: visible;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.navbar-brand.d-lg-block {
    position: absolute;
    transform: translateX(-100%) translateY(18%);
    margin-right: 30px;
    padding: 0;
    z-index: 1051;
}
.navbar-logo-pc {
    height: 87px;
    width: auto;
    display: block;
}
nav.navbar ul.navbar-nav#pc-nav-links {
    margin-left: 0;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    height: 100%;
}
nav.navbar a.nav-link {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    margin: 0 10px;
    padding: 18px 10px;
    display: block;
    border-radius: 0;
    background-color: transparent;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
nav.navbar a.nav-link:hover,
nav.navbar a.nav-link.active {
    color: var(--color-red);
    background-color: transparent;
}
.collapse.navbar-collapse.order-lg-2 {
    order: 2;
    flex-grow: 1;
    justify-content: flex-start;
    position: static;
    transform: none;
    height: auto;
    overflow: visible;
    background-color: transparent;
}
.client-balance {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}
#left-group-pc {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 15px;
    display: flex;
    align-items: center;
    z-index: 1052;
}
#left-group-mobile {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
@media (max-width: 600px) {
    .client-balance {
        font-size: 12px;
    }
    #left-group-mobile {
        margin-left: 10px;
    }
}

.navbar .navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 5px;
    z-index: 1100;
    position: relative;
    margin-left: auto;
}
.custom-toggler-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}
.custom-toggler-icon span,
.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-red);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}
.custom-toggler-icon span { top: 50%; transform: translateY(-50%); }
.custom-toggler-icon::before { top: 6px; }
.custom-toggler-icon::after { top: 18px; }
.navbar-toggler:not(.collapsed) .custom-toggler-icon span {
    background-color: transparent;
}
.navbar-toggler:not(.collapsed) .custom-toggler-icon::before {
    top: 50%;
    background-color: var(--color-white);
    transform: translateY(-50%) rotate(45deg);
}
.navbar-toggler:not(.collapsed) .custom-toggler-icon::after {
    top: 50%;
    background-color: var(--color-white);
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar-brand.d-lg-block {
        display: none !important;
    }
    nav.navbar {
        padding: 15px 15px;
    }
    .navbar-brand.p-0.d-lg-none {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) translateY(35%);
        z-index: 1051;
    }
    .navbar-logo-mobile {
        height: 85px;
    }
    #left-group-pc, #left-group-mobile {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-black);
        z-index: 1100;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        padding: 0;
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .mobile-menu-header {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 15px 20px;
        border-bottom: none;
        background-color: var(--bg-black);
        z-index: 1101;
        position: sticky;
        top: 0;
    }
    .mobile-menu-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gradient-border);
        background-size: 200% 100%;
        animation: borderGradientFlow 3s linear infinite;
    }
    .mobile-logo-group {
        display: flex;
        align-items: center;
    }
    .navbar-logo-mobile-menu {
        height: 85px;
        margin-right: 15px;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: none;
        display: flex;
        justify-content: flex-start;
        position: relative;
    }
    .navbar-nav .nav-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gradient-border);
        background-size: 200% 100%;
        animation: borderGradientFlow 4s linear infinite;
    }
    .navbar-nav .nav-link {
        width: 100%;
        padding: 15px 20px;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-white);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Cinzel', serif;
        letter-spacing: 2px;
    }
    .navbar-nav .nav-link i {
        color: var(--color-white);
        font-size: 14px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: var(--bg-dark);
        color: var(--color-red);
    }
    .mobile-contact-info {
        width: 100%;
        padding: 20px;
        margin-top: 10px;
        text-align: left;
    }
    .mobile-contact-info p {
        color: var(--color-white);
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 500;
    }
    .mobile-contact-info i {
        color: var(--color-red);
        margin-right: 10px;
        width: 15px;
        text-align: center;
    }
    .telegram-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border: 2px solid var(--color-red);
        border-radius: 10px;
        margin-top: 5px;
        color: var(--color-red);
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
    }
    .telegram-button svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
        flex-shrink: 0;
    }
    .telegram-button:hover {
        background: var(--gradient-btn);
        background-size: 200% 200%;
        animation: gradientFlow1 2s ease infinite;
        color: var(--color-white);
        box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
    }
}
@media (min-width: 992px) {
    .mobile-contact-info {
        display: none !important;
    }
    .telegram-contact-info {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1150;
    }
    .telegram-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border: 2px solid var(--color-red);
        border-radius: 10px;
        color: var(--color-red);
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
    }
    .telegram-button svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
        flex-shrink: 0;
    }
    .telegram-button:hover {
        background: var(--gradient-btn);
        background-size: 200% 200%;
        animation: gradientFlow2 2.5s ease infinite;
        color: var(--color-white);
        box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
    }
}

.model-btn,
.hero-btn,
.btn-support,
.btn-catalog,
.btn-return,
.btn-topup-card,
.pay-card {
    font-family: 'Cinzel', serif;
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-btn);
    background-size: 200% 200%;
    animation: gradientFlow1 4s ease infinite;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.model-btn::before,
.hero-btn::before,
.btn-support::before,
.btn-catalog::before,
.btn-return::before,
.btn-topup-card::before,
.pay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.model-btn:hover::before,
.hero-btn:hover::before,
.btn-support:hover::before,
.btn-catalog:hover::before,
.btn-return:hover::before,
.btn-topup-card:hover::before,
.pay-card:hover::before {
    animation: btnShine 0.6s ease;
}
.model-btn:hover,
.hero-btn:hover,
.btn-support:hover,
.btn-catalog:hover,
.btn-return:hover,
.btn-topup-card:hover,
.pay-card:hover {
    background: var(--gradient-btn-hover);
    background-size: 200% 200%;
    animation: gradientFlow2 2s ease infinite;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--gradient-btn) !important;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.btn:hover::before {
    animation: btnShine 0.6s ease;
}
.btn:hover {
    background: var(--gradient-btn-hover) !important;
    background-size: 200% 200%;
    animation: gradientFlow1 2.5s ease infinite;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}
.btn-secondary {
    background: var(--gradient-btn) !important;
}
.btn-secondary:hover {
    background: var(--gradient-btn-hover) !important;
    background-size: 200% 200%;
    animation: gradientFlow1 2.5s ease infinite;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}
button[style*="background-color: #CC0000"],
button[style*="background-color:#CC0000"] {
    background: var(--gradient-btn) !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
button[style*="background-color: #CC0000"]::before,
button[style*="background-color:#CC0000"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
    pointer-events: none;
}
button[style*="background-color: #CC0000"]:hover::before,
button[style*="background-color:#CC0000"]:hover::before {
    animation: btnShine 0.6s ease;
}
button[style*="background-color: #CC0000"]:hover,
button[style*="background-color:#CC0000"]:hover {
    background: var(--gradient-btn-hover) !important;
    background-size: 200% 200%;
    animation: gradientFlow1 2.5s ease infinite;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}

.accent-text,
.neon-blue {
    background: var(--gradient-btn);
    background-size: 200% 200%;
    animation: textGradientFlow 3.5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    padding: 25px 0;
    background: var(--bg-black);
    border-top: none;
    text-align: center;
    position: relative;
    margin-top: auto;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-border);
    background-size: 200% 100%;
    animation: borderGradientFlow 5s linear infinite;
}
footer span, footer a {
    color: var(--color-gray);
    font-size: 15px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
footer a:hover {
    color: var(--color-red);
}

.header-text, .advantages-title, .models-title, .products-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .header-text, .advantages-title, .models-title, .products-section h2 {
        font-size: 1.8rem !important;
        letter-spacing: 3px;
        padding: 0 15px;
        word-wrap: break-word;
    }
}
