@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body,
html {
    background: #0E0E10;
    color: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(123, 148, 240, 0.2) 0%, rgba(123, 148, 240, 0.05) 40%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(123, 148, 240, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 148, 240, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

body.register-page {
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    margin-top: 60px;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(123, 148, 240, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(123, 148, 240, 0.15),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
    animation: slideDown 0.6s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.menu ul li a {
    color: #ffffffc1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.menu ul li a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: #7B94F0;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.4),
        0 4px 25px rgba(123, 148, 240, 0.5),
        0 0 40px rgba(123, 148, 240, 0.3);
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::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: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 25px rgba(123, 148, 240, 0.5),
        0 6px 35px rgba(123, 148, 240, 0.7),
        0 0 50px rgba(123, 148, 240, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}


.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
    padding: 4rem 1rem;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    min-height: 60vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 148, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #7B94F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.2s backwards;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 40px rgba(123, 148, 240, 0.4);
    letter-spacing: -0.02em;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #7B94F0, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.6);
    animation: expandLine 1s ease-out 0.8s backwards;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100px;
        opacity: 1;
    }
}

.hero>p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0;
    animation: slideUp 0.8s ease-out 0.4s backwards;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-cards .hero-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.8s backwards;
}

.hero-cards .hero-card:nth-child(2) {
    animation: slideInRight 0.8s ease-out 1s backwards;
}

.hero-card {
    position: relative;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(123, 148, 240, 0.15),
        inset 0 0 30px rgba(123, 148, 240, 0.08);
}

.hero-card h2,
.hero-card p,
.hero-card .btn-primary {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(14, 14, 16, 0.95) 0%, rgba(14, 14, 16, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.hero-card h2 {
    position: relative;
    z-index: 3;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: normal;
    text-transform: none;
    box-shadow: none;
    transition: all 0.3s ease;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.hero-card:hover h2 {
    transform: none;
}

.hero-card p {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-family: 'Inter', sans-serif;
}

.hero-card button,
.hero-card .btn-primary {
    position: relative;
    z-index: 3;
    margin-top: 0;
    align-self: center;
    display: inline-flex;
    background: #7B94F0;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.4),
        0 4px 25px rgba(123, 148, 240, 0.5),
        0 0 40px rgba(123, 148, 240, 0.3);
    outline: none;
    align-items: center;
    gap: 0.5rem;
    width: auto;
}

.support-button-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    display: none;
}

@media (min-width: 769px) {
    .support-button-container {
        display: block;
    }
}

.support-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #7B94F0;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.4),
        0 4px 25px rgba(123, 148, 240, 0.5),
        0 0 40px rgba(123, 148, 240, 0.3);
    transition: all 0.3s ease;
}

.support-button:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 25px rgba(123, 148, 240, 0.5),
        0 6px 35px rgba(123, 148, 240, 0.7),
        0 0 50px rgba(123, 148, 240, 0.4);
}

@media (max-width: 768px) {
    .support-button-container {
        display: none;
    }
}

.hero-card button:hover,
.hero-card .btn-primary:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 25px rgba(123, 148, 240, 0.5),
        0 6px 35px rgba(123, 148, 240, 0.7),
        0 0 50px rgba(123, 148, 240, 0.4);
}


.why-choose-us {
    margin-top: 100px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    padding: 3rem 0;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(123, 148, 240, 0.4);
}

.why-choose-us h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #7B94F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3.5rem;
    animation: slideUp 0.8s ease-out;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(123, 148, 240, 0.3);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 16px;
    padding: 2rem;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out backwards;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.why-card:nth-child(1) {
    animation-delay: 0.2s;
}

.why-card:nth-child(2) {
    animation-delay: 0.4s;
}

.why-card:nth-child(3) {
    animation-delay: 0.6s;
}

.why-card-content {
    flex: 1;
}

.why-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #bdbdbd;
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.why-card-icon {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials {
    margin-top: 100px;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    padding: 3rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(123, 148, 240, 0.4);
}

.testimonials h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #7B94F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: left;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.testimonials h1 .highlight-number {
    color: #AFAFAF;
}

.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

@supports (mask-image: linear-gradient(black, white)) {
    .testimonials-marquee {
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.15),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(6) {
    animation-delay: 0.6s;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars {
    margin-bottom: 0.75rem;
}

.testimonial-stars img {
    height: 14px;
    width: auto;
}

.testimonial-text {
    color: #d0d0d0;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.testimonials-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #fff;
    font-size: 24px;
    box-shadow:
        0 4px 20px rgba(123, 148, 240, 0.2),
        inset 0 0 15px rgba(123, 148, 240, 0.05);
    outline: none;
}

.testimonials-slider-btn:hover:not(:disabled) {
    background: rgba(20, 20, 25, 0.98);
    border-color: rgba(123, 148, 240, 0.5);
    box-shadow:
        0 6px 30px rgba(123, 148, 240, 0.3),
        inset 0 0 20px rgba(123, 148, 240, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-slider-prev {
    left: -24px;
}

.testimonials-slider-next {
    right: -24px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(123, 148, 240, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.testimonial-dot:hover {
    background: rgba(123, 148, 240, 0.5);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #7B94F0;
    box-shadow:
        0 0 15px rgba(123, 148, 240, 0.6),
        inset 0 0 8px rgba(123, 148, 240, 0.3);
    transform: scale(1.3);
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(123, 148, 240, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid rgba(123, 148, 240, 0.3);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.testimonial-location {
    color: #bdbdbd;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.world-icon {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}


.faq-section {
    margin-top: 100px;
    padding: 3rem 0;
    animation: fadeIn 0.8s ease-out;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(123, 148, 240, 0.4);
}

.faq-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #7B94F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: left;
    animation: slideUp 0.8s ease-out;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.faq-item {
    animation: fadeIn 0.5s ease-out backwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.faq-item.active {
    border-color: rgba(123, 148, 240, 0.5);
    box-shadow:
        0 8px 40px rgba(123, 148, 240, 0.3),
        inset 0 0 30px rgba(123, 148, 240, 0.1);
    background: rgba(20, 20, 25, 0.98);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    padding: 0;
    margin: 0;
    color: #bdbdbd;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0.75rem 0;
    margin-top: 0.25rem;
}


.footer {
    margin-top: 80px;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.8s ease-out;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    align-items: start;
    padding-right: 250px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-desc {
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-telegram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdbdbd;
    font-size: 0.95rem;
}

.footer-telegram i {
    font-size: 1.5rem;
    color: #fff;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-column a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-column a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-telegram {
    transition: transform 0.3s ease;
}

.footer-telegram:hover {
    transform: scale(1.1);
}

.footer-ms-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-ms-logo img {
    width: 180px;
    height: 180px;
    opacity: 1;
}

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}


.register-form {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    animation: scaleIn 0.6s ease-out;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(123, 148, 240, 0.1),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.register-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.register-subtitle {
    color: #bdbdbd;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

.register-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-input {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(123, 148, 240, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease-out backwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.register-input:nth-of-type(1) {
    animation-delay: 0.1s;
}

.register-input:nth-of-type(2) {
    animation-delay: 0.2s;
}

.register-input:nth-of-type(3) {
    animation-delay: 0.3s;
}

.register-input::placeholder {
    color: #bdbdbd;
}

.register-input:focus {
    background: rgba(20, 20, 25, 0.95);
    border-color: rgba(123, 148, 240, 0.6);
    transform: translateY(-2px);
    box-shadow:
        0 4px 20px rgba(123, 148, 240, 0.3),
        0 0 30px rgba(123, 148, 240, 0.2),
        inset 0 0 15px rgba(123, 148, 240, 0.1);
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper .register-input {
    padding-right: 3rem;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #bdbdbd;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: #7B94F0;
}

.register-btn {
    width: 100%;
    text-transform: uppercase;
    padding: 1.25rem;
    margin-top: 0.5rem;
    justify-content: center;
    background: #7B94F0;
    border: none;
    color: #fff;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.4),
        0 4px 25px rgba(123, 148, 240, 0.5),
        0 0 40px rgba(123, 148, 240, 0.3);
}

.register-btn:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 25px rgba(123, 148, 240, 0.5),
        0 6px 35px rgba(123, 148, 240, 0.7),
        0 0 50px rgba(123, 148, 240, 0.4);
}

.register-login-link {
    text-align: center;
    color: #bdbdbd;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.register-login-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.register-login-link a:hover {
    text-decoration: underline;
}


.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.login-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bdbdbd;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
}

.login-checkbox-label span {
    user-select: none;
}

.login-forgot-link {
    color: #bdbdbd;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.login-forgot-link:hover {
    color: #fff;
    text-decoration: underline;
}

.register-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #bdbdbd;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    margin-top: 0.5rem;
}

.register-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #2C2D32;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.register-checkbox:checked {
    background-color: #2C2D32;
}

.register-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.register-checkbox-label a {
    color: #fff;
    text-decoration: none;
}

.register-checkbox-label a:hover {
    text-decoration: underline;
}


.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.burger-menu-toggle.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    -webkit-transform: translateY(10px) rotate(45deg);
}

.burger-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
}

.burger-menu-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    -webkit-transform: translateY(-10px) rotate(-45deg);
}


.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 2rem 2rem;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-list li {
    text-align: center;
}

.mobile-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    padding: 1rem;
    transition: color 0.3s, transform 0.2s;
    border-radius: 10px;
}

.mobile-menu-list a:hover {
    color: #bdbdbd;
    transform: translateX(5px);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-buttons .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
}

/* Bottom Navigation Bar */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(123, 148, 240, 0.3);
    box-shadow:
        0 -4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
    z-index: 1000;
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.bottom-nav-item i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover {
    color: rgba(123, 148, 240, 0.8);
    background: rgba(123, 148, 240, 0.05);
}

.bottom-nav-item.active {
    color: #7B94F0;
}

.bottom-nav-item.active i {
    color: #7B94F0;
    text-shadow:
        0 0 10px rgba(123, 148, 240, 0.8),
        0 0 20px rgba(123, 148, 240, 0.5);
}

.bottom-nav-item.active span {
    color: #7B94F0;
    font-weight: 600;
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7B94F0, transparent);
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 10px rgba(123, 148, 240, 0.8);
}


@media (max-width: 1024px) {
    .hero-cards {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card {
        min-width: calc(50% - 0.5rem);
    }

    .testimonials-slider-container {
        padding: 0 2.5rem;
    }

    .testimonials-slider-prev {
        left: 8px;
    }

    .testimonials-slider-next {
        right: 8px;
    }

    .testimonials-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    body,
    html {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        height: auto;
        min-height: 100%;
    }

    body {
        padding-bottom: 70px;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    nav {
        padding: 12px 16px;
        margin-top: 10px;
        position: relative;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .menu {
        display: none;
    }

    .buttons {
        display: none;
    }

    .burger-menu-toggle {
        display: none;
    }

    .logo h1 {
        font-size: 1.15rem;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .hero {
        margin-top: 15px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hero h1 {
        font-size: 1.5rem;
        text-align: center;
        padding: 0;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        width: 100%;
    }

    .hero>p {
        font-size: 0.85rem;
        text-align: center;
        padding: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

    .hero-line {
        width: 100%;
        max-width: 200px;
        margin: 0.5rem auto;
    }

    .hero-gradient-overlay {
        width: 100%;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }


    .hero-card {
        height: auto;
        min-height: 280px;
        padding: 1.25rem;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-card h2 {
        font-size: 1.9rem;
        margin-bottom: 0.2rem;
        position: relative;
        z-index: 3;
    }

    .hero-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-card .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: auto;
        box-sizing: border-box;
    }

    .why-choose-us {
        margin-top: 35px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .why-choose-us h1 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding: 0;
        text-align: center;
    }

    .section-line {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 1.5rem;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .why-card-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .why-card-icon img {
        max-width: 100%;
        height: auto;
    }

    .why-card h2 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }

    .why-card p {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .testimonials {
        margin-top: 30px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonials h1 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        padding: 0;
        text-align: center;
        line-height: 1.2;
    }

    .testimonials-grid .testimonial-card {
        min-width: 100%;
    }

    .testimonial-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonials-slider-container {
        padding: 0 2.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonials-slider-wrapper {
        width: 100%;
    }

    .testimonials-slider-prev {
        left: 4px;
    }

    .testimonials-slider-next {
        right: 4px;
    }

    .testimonials-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .testimonials-dots {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .faq-section {
        margin-top: 30px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .faq-section h1 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        padding: 0;
        text-align: center;
    }

    .faq-item {
        padding: 0.875rem;
        margin-bottom: 0.75rem;
        width: 100%;
        box-sizing: border-box;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .faq-list {
        width: 100%;
    }


    .footer {
        margin-top: 60px;
        padding: 2rem 0;
        padding-bottom: calc(2rem + 80px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-right: 0;
    }

    .footer-ms-logo {
        display: none;
    }

    .footer-links-column {
        align-items: flex-start;
    }


    .register-form {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .register-title {
        font-size: 1.5rem;
    }

    .register-subtitle {
        font-size: 0.9rem;
    }

    .register-input {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .register-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .login-forgot-link {
        align-self: flex-end;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        margin-top: 15px;
        border-radius: 15px;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .hero-card {
        height: 320px;
    }

    .hero-card h2 {
        font-size: 1.75rem;
        padding: 0.5rem 0.75rem;
        background: transparent;
        border: none;
    }

    .why-choose-us h1,
    .testimonials h1,
    .faq-section h1 {
        font-size: 1.5rem;
    }

    .mobile-menu {
        padding: 80px 1.5rem 2rem;
    }

    .mobile-menu-list a {
        font-size: 1.25rem;
    }
}


.rules-page {
    margin-top: 40px;
    padding-bottom: 4rem;
}

.rules-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.rules-back-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.rules-back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.rules-back-link:hover i {
    transform: translateX(-3px);
}

.rules-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.rules-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease-out;
}

.rules-subtitle {
    font-size: 1.1rem;
    color: #bdbdbd;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rule-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: fadeIn 0.6s ease-out backwards;
    transition: transform 0.3s ease;
}

.rule-item:nth-child(1) {
    animation-delay: 0.2s;
}

.rule-item:nth-child(2) {
    animation-delay: 0.4s;
}

.rule-item:nth-child(3) {
    animation-delay: 0.6s;
}

.rule-item:nth-child(4) {
    animation-delay: 0.8s;
}

.rule-item:hover {
    transform: translateX(10px);
}

.rule-item.rule-subitem {
    margin-left: 2rem;
    gap: 1rem;
}

.rule-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin: 0;
    line-height: 1.6;
}

.rule-text {
    flex: 1;
}

.rule-text p {
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.rule-text p:last-child {
    margin-bottom: 0;
}

.rule-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.rule-list-items {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.rule-list-items li {
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.rule-list-items li:before {
    content: "•";
    color: #7B94F0;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.support-link {
    color: #7B94F0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: #8BA0F5;
    text-decoration: underline;
}

.testimonial-date {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .rules-page {
        margin-top: 30px;
        padding-bottom: 3rem;
    }

    .rules-back-link {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .rules-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .rules-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .rules-list {
        gap: 1.5rem;
    }

    .rule-item {
        gap: 1rem;
    }

    .rule-item.rule-subitem {
        margin-left: 1rem;
    }

    .rule-number {
        font-size: 1.1rem;
    }

    .rule-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .rules-title {
        font-size: 1.75rem;
    }

    .rules-subtitle {
        font-size: 0.9rem;
    }

    .rule-item.rule-subitem {
        margin-left: 0.5rem;
    }

    .rule-number {
        font-size: 1rem;
    }

    .rule-text p {
        font-size: 0.9rem;
    }
}


.guarantees-page {
    margin-top: 40px;
    padding-bottom: 4rem;
}

.guarantees-content {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.guarantees-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease-out;
}

.guarantees-subtitle {
    font-size: 1.1rem;
    color: #bdbdbd;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.guarantees-section {
    margin-bottom: 4rem;
}

.guarantees-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: left;
}

.guarantees-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.guarantee-card {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out backwards;
    min-height: 180px;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.guarantee-card:nth-child(1) {
    animation-delay: 0.1s;
}

.guarantee-card:nth-child(2) {
    animation-delay: 0.2s;
}

.guarantee-card:nth-child(3) {
    animation-delay: 0.3s;
}

.guarantee-card:nth-child(4) {
    animation-delay: 0.4s;
}

.guarantee-card:nth-child(5) {
    animation-delay: 0.5s;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-section {
    margin-bottom: 3rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.5;
}

.advantage-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.guarantees-footer {
    background: linear-gradient(to right, #212122 0%, #161616 50%, #323232 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.guarantees-footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.guarantees-footer-text {
    color: #bdbdbd;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

@media (max-width: 1024px) {
    .guarantees-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .guarantees-page {
        margin-top: 30px;
        padding-bottom: 3rem;
    }

    .guarantees-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .guarantees-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .guarantees-section {
        margin-bottom: 3rem;
    }

    .guarantees-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .guarantees-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guarantee-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        min-height: 160px;
    }

    .guarantee-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .guarantee-text {
        font-size: 0.9rem;
        text-align: center;
        margin: 0;
    }

    .advantages-list {
        gap: 1rem;
    }

    .advantage-item {
        font-size: 0.95rem;
        gap: 0.75rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 10px;
    }

    .advantage-check {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .guarantees-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .guarantees-footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .guarantees-page {
        margin-top: 20px;
        padding-bottom: 2rem;
    }

    .guarantees-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .guarantees-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .guarantees-section {
        margin-bottom: 2.5rem;
    }

    .guarantees-section-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .guarantees-cards {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .guarantee-card {
        padding: 1rem;
        gap: 0.875rem;
    }

    .guarantee-icon {
        width: 44px;
        height: 44px;
    }

    .guarantee-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .advantage-item {
        font-size: 0.9rem;
        padding: 0.625rem;
        gap: 0.625rem;
    }

    .advantage-check {
        width: 20px;
        height: 20px;
    }

    .guarantees-footer {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    .guarantees-footer-text {
        font-size: 0.85rem;
    }
}

/* Catalog Page Styles */
.catalog-page {
    margin-top: 20px;
    padding-bottom: 4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.catalog-page::-webkit-scrollbar {
    display: none;
}

.catalog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.catalog-back-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.catalog-back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.catalog-back-link:hover i {
    transform: translateX(-3px);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.catalog-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 0.5rem;
}

.catalog-products {
    position: relative;
}

.catalog-count {
    color: #bdbdbd;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Filters Toggle Button */
.filters-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(123, 148, 240, 0.15);
}

.filters-toggle-btn:hover {
    background: rgba(123, 148, 240, 0.2);
    border-color: rgba(123, 148, 240, 0.5);
}

.filters-toggle-btn i:first-child {
    font-size: 1.25rem;
    color: #7B94F0;
}

.filters-toggle-btn i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.catalog-filters {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 20px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 1000px;
}

.catalog-filters.collapsed {
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.filters-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-close-btn {
    display: none;
    background: none;
    border: none;
    color: #bdbdbd;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.filter-sort {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sort-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 25, 0.6);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #bdbdbd;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sort-btn:hover,
.sort-btn.active {
    background: rgba(20, 20, 25, 0.8);
    color: #7B94F0;
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.sort-btn i {
    font-size: 1.25rem;
}

.filter-input-group {
    margin-bottom: 1.5rem;
}

.filter-input-group label {
    display: block;
    color: #bdbdbd;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.filter-input {
    width: 100%;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    -moz-appearance: textfield;
}

.filter-input:focus {
    border-color: rgba(123, 148, 240, 0.6);
}

.filter-input::-webkit-outer-spin-button,
.filter-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filter-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(20, 20, 25, 0.6);
}

.filter-checkbox input[type="checkbox"]:checked+.checkmark {
    background: #7B94F0;
    border-color: #7B94F0;
}

.filter-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.filter-search-btn {
    width: 100%;
    background: #7B94F0;
    border: none;
    border-radius: 12px;
    padding: 0.875rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.4),
        0 4px 25px rgba(123, 148, 240, 0.5),
        0 0 40px rgba(123, 148, 240, 0.3);
}

.filter-search-btn:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 25px rgba(123, 148, 240, 0.5),
        0 6px 35px rgba(123, 148, 240, 0.7),
        0 0 50px rgba(123, 148, 240, 0.4);
}

.catalog-products {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out backwards;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card:nth-child(9) {
    animation-delay: 0.9s;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
}

.product-image-wrapper:hover .product-image-arrow {
    opacity: 1;
}

.product-image-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.product-image-arrow-left {
    left: 8px;
}

.product-image-arrow-right {
    right: 8px;
}

.product-image-indicators {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.product-image-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image-dot.active {
    background: #7B94F0;
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(123, 148, 240, 0.6);
}

.product-desc {
    padding: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
    min-height: 50px;
    font-family: 'Inter', sans-serif;
}

.product-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(123, 148, 240, 0.2);
    background: rgba(123, 148, 240, 0.02);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7B94F0;
}

.product-price.ml-price {
    color: #7B94F0;
}

.product-buy-btn {
    background: #7B94F0;
    border: none;
    border-radius: 12px;
    padding: 0.5rem 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 15px rgba(123, 148, 240, 0.4),
        0 2px 15px rgba(123, 148, 240, 0.4),
        0 0 25px rgba(123, 148, 240, 0.2);
}

.product-buy-btn:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.5),
        0 4px 20px rgba(123, 148, 240, 0.6),
        0 0 35px rgba(123, 148, 240, 0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-btn,
.pagination-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(123, 148, 240, 0.3);
    background: rgba(20, 20, 25, 0.6);
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled),
.pagination-number:hover {
    background: rgba(20, 20, 25, 0.8);
    border-color: rgba(123, 148, 240, 0.6);
    color: #7B94F0;
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-number.active {
    background: #7B94F0;
    color: #fff;
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow:
        inset 0 0 15px rgba(123, 148, 240, 0.4),
        0 0 25px rgba(123, 148, 240, 0.4);
}

/* Product Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: rgba(20, 20, 25, 0.98);
    border-radius: 25px;
    padding: 2rem;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2001;
    animation: scaleIn 0.3s ease-out;
    border: 1px solid rgba(123, 148, 240, 0.3);
    box-shadow: 0 10px 50px rgba(123, 148, 240, 0.3), 0 0 60px rgba(123, 148, 240, 0.2);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(123, 148, 240, 0.3);
    color: #7B94F0;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(20, 20, 25, 1);
    border-color: rgba(123, 148, 240, 0.6);
    color: #8BA0F5;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    padding: 0 2.5rem;
}

.modal-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.modal-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.modal-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-arrow-left {
    left: 1rem;
}

.modal-arrow-right {
    right: 1rem;
}

.modal-image img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.modal-image img:hover {
    transform: scale(1.02);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100010;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100010;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto !important;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
    left: 2rem;
}

.lightbox-arrow-right {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        min-width: 50px;
        min-height: 50px;
        padding: 0;
    }

    .lightbox-arrow-left {
        left: 0.5rem;
    }

    .lightbox-arrow-right {
        right: 0.5rem;
    }

    .lightbox-image-container {
        max-width: 95%;
        max-height: 85%;
    }
}

.modal-stats {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stats-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ml-modal .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ml-modal .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-label {
    color: #bdbdbd;
    font-size: 0.6rem;
}

.stat-value {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}

.modal-stats .stat-label {
    font-size: 0.7rem;
}

.modal-stats .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .modal-stats {
        margin-bottom: 1rem;
    }

    .stats-columns {
        gap: 1rem;
    }

    .stats-column {
        gap: 0.5rem;
    }

    .stats-row {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .stat-item {
        gap: 0.3rem;
        display: flex !important;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 0.85rem;
    }

    .modal-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .modal-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .stats-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }

    .stat-value {
        font-size: 0.55rem;
    }

    .modal-title {
        font-size: 0.9rem;
    }
}

.modal-buy-btn {
    width: 100%;
    background: #7B94F0;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.4),
        0 4px 25px rgba(123, 148, 240, 0.5),
        0 0 40px rgba(123, 148, 240, 0.3);
}

.modal-buy-btn:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 25px rgba(123, 148, 240, 0.5),
        0 6px 35px rgba(123, 148, 240, 0.7),
        0 0 50px rgba(123, 148, 240, 0.4);
}

.modal-price {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    color: #7B94F0;
    margin-top: 1rem;
    margin-bottom: 0;
}

.modal-price.ml-price {
    color: #7B94F0;
}

.modal-price.pubg-price {
    color: #7B94F0;
}

/* Modal Header Stats */
.modal-header-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-header-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.header-stat {
    color: #bdbdbd;
    font-size: 0.95rem;
    font-weight: 500;
}

.header-stat span {
    color: #7B94F0;
    font-weight: 600;
}

/* Modal Main Content with Gallery */
.modal-main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.modal-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

/* Modal Gallery Section */
.modal-gallery-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-gallery-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gallery-search-wrapper,
.gallery-filter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-search {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gallery-search:focus {
    outline: none;
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 15px rgba(123, 148, 240, 0.3);
    background: rgba(20, 20, 25, 0.95);
}

.gallery-search-wrapper i {
    position: absolute;
    right: 0.75rem;
    color: #7B94F0;
    font-size: 1.1rem;
    pointer-events: none;
}

.gallery-filter {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.gallery-filter:focus {
    outline: none;
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 15px rgba(123, 148, 240, 0.3);
    background: rgba(20, 20, 25, 0.95);
}

.gallery-filter:hover {
    border-color: rgba(123, 148, 240, 0.5);
    background: rgba(20, 20, 25, 0.9);
}

.gallery-filter-wrapper i {
    position: absolute;
    right: 0.75rem;
    color: #7B94F0;
    font-size: 1.1rem;
    pointer-events: none;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.25rem;
}

.modal-gallery::-webkit-scrollbar {
    width: 6px;
}

.modal-gallery::-webkit-scrollbar-track {
    background: rgba(20, 20, 25, 0.5);
    border-radius: 3px;
}

.modal-gallery::-webkit-scrollbar-thumb {
    background: rgba(123, 148, 240, 0.5);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.modal-gallery::-webkit-scrollbar-thumb:hover {
    background: rgba(123, 148, 240, 0.7);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(20, 20, 25, 0.6);
}

.gallery-item:hover {
    border-color: rgba(123, 148, 240, 0.6);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(123, 148, 240, 0.4);
    z-index: 10;
}

.gallery-item.active {
    border-color: #7B94F0;
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-name {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Enhanced Hover Effects */
.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(123, 148, 240, 0.4);
    border-color: rgba(123, 148, 240, 0.5);
}

.product-image-main {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-main {
    transform: scale(1.05);
}

.product-image-arrow {
    transition: all 0.3s ease;
}

.product-image-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.5);
}

.product-image-arrow i {
    transition: transform 0.3s ease;
}

.product-image-arrow:hover i {
    transform: scale(1.2);
}

.filter-input,
.filter-checkbox,
.sort-btn {
    transition: all 0.3s ease;
}

.filter-input:focus,
.filter-checkbox:hover,
.sort-btn:hover {
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 15px rgba(123, 148, 240, 0.3);
    transform: translateY(-1px);
}

.filter-checkbox input[type="checkbox"]:hover + .checkmark {
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 10px rgba(123, 148, 240, 0.3);
}

.pagination-number:hover:not(.active) {
    transform: scale(1.1);
}

.stat-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.stat-item:hover {
    background: rgba(123, 148, 240, 0.1);
    transform: translateX(5px);
}

.stat-item:hover .stat-value {
    color: #8BA0F5;
}

/* Icon hover effects - ensure Boxicons work properly */
i[class*="bx"] {
    transition: all 0.3s ease;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
}

/* Ensure all icon containers have proper sizing */
i.bx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu ul li a:hover i,
.bottom-nav-item:hover i,
.catalog-back-link:hover i {
    transform: scale(1.15);
    color: #7B94F0;
}

.modal-close:hover i {
    transform: rotate(90deg) scale(1.1);
}

.filters-toggle-btn:hover i {
    transform: scale(1.1);
    color: #7B94F0;
}

.mobile-filter-toggle:hover {
    background: rgba(123, 148, 240, 0.2);
    transform: scale(1.05);
}

.mobile-filter-toggle:hover i {
    transform: scale(1.1);
}

/* Logo hover effect */
.logo img {
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(123, 148, 240, 0.5));
}

/* Product image indicators hover */
.product-image-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-image-dot:hover {
    transform: scale(1.3);
    background: rgba(123, 148, 240, 0.8);
}

/* Catalog back link hover */
.catalog-back-link {
    transition: all 0.3s ease;
}

.catalog-back-link:hover {
    color: #7B94F0;
    transform: translateX(-5px);
}

.catalog-back-link:hover i {
    transform: translateX(-3px);
}

/* Filter close button hover */
.filter-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg) scale(1.1);
}

.filter-close-btn:hover i {
    color: #ff4444;
}

/* Gallery item quality indicators */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(123, 148, 240, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Mobile Responsive for Gallery */
@media (max-width: 1024px) {
    .modal-main-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        grid-template-columns: repeat(4, 1fr);
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .modal-main-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-image {
        height: 250px;
    }

    .modal-gallery {
        grid-template-columns: repeat(3, 1fr);
        max-height: 150px;
    }

    .modal-header-info {
        font-size: 0.85rem;
        gap: 1rem;
    }
}

/* Catalog Mobile Styles */
@media (max-width: 1024px) {
    .catalog-container {
        grid-template-columns: 250px 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-page {
        margin-top: 20px;
        padding-bottom: 2rem;
    }

    .filters-toggle-btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .catalog-back-link {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .catalog-header-new {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .catalog-right {
        justify-content: flex-start;
    }

    .catalog-count {
        font-size: 0.9rem;
        margin-top: 0;
    }

    .catalog-title {
        font-size: 1.5rem;
        margin: 0 0 0.75rem 0;
        text-align: center;
    }

    .catalog-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .catalog-filters {
        position: static;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 12px;
        max-height: 1000px;
        opacity: 1;
        pointer-events: auto;
    }

    .catalog-filters.collapsed {
        max-height: 0;
        padding: 0;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .filters-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .filter-close-btn {
        display: block;
    }

    .mobile-filter-toggle {
        display: none !important;
    }

    .filter-sort {
        margin-bottom: 1rem;
    }

    .sort-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }

    .filter-input-group {
        margin-bottom: 1rem;
    }

    .filter-input-group label {
        font-size: 0.85rem;
    }

    .filter-input {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    .filter-checkbox-group {
        margin-bottom: 1rem;
    }

    .filter-checkbox {
        font-size: 0.9rem;
    }

    .filter-search-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image {
        height: 150px;
    }

    .product-desc {
        font-size: 1rem;
        padding: 0.75rem;
        min-height: 40px;
    }

    .product-footer {
        padding: 0.75rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-image {
        height: 250px;
    }

    .stats-row {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .catalog-page {
        margin-top: 15px;
        padding-bottom: 1.5rem;
    }

    .catalog-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .catalog-filters {
        position: static;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .catalog-filters.collapsed {
        max-height: 0;
        padding: 0;
        margin: 0;
        opacity: 0;
        pointer-events: none;
    }

    .filters-title {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-image {
        height: 180px;
    }

    .product-desc {
        font-size: 0.95rem;
        padding: 0.625rem;
    }

    .product-footer {
        padding: 0.625rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .modal-price {
        font-size: 1.5rem;
        text-align: left;
    }

    .stats-row {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* Account Page Styles */
.account-page {
    margin-top: 2rem;
    padding-bottom: 3rem;
    animation: fadeIn 0.6s ease-out;
}

.account-back {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-link i {
    font-size: 1.25rem;
}

.back-link:hover {
    color: #bdbdbd;
    transform: translateX(-5px);
}

.account-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.account-info {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.account-info-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.account-info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.info-label {
    color: #bdbdbd;
    font-size: 1rem;
}

.info-value {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.account-info-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.account-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.account-link:hover {
    color: #bdbdbd;
    text-decoration: underline;
}

.purchase-history {
    margin-top: 2rem;
}

.history-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.history-table-container {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 16px;
    overflow: hidden;
    overflow-x: auto;
    box-shadow:
        0 4px 30px rgba(123, 148, 240, 0.2),
        inset 0 0 20px rgba(123, 148, 240, 0.05);
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.history-table thead {
    background: rgba(123, 148, 240, 0.1);
}

.history-table th {
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(123, 148, 240, 0.2);
}

.history-table td {
    padding: 1rem;
    color: #fff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(123, 148, 240, 0.1);
}

.history-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}

.history-table tbody tr:hover {
    background-color: rgba(123, 148, 240, 0.1);
}

.history-table tbody tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Order Modal Styles */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.order-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(123, 148, 240, 0.2);
    box-shadow:
        0 2px 15px rgba(123, 148, 240, 0.1),
        inset 0 0 10px rgba(123, 148, 240, 0.03);
}

.detail-label {
    color: #bdbdbd;
    font-size: 0.95rem;
}

.detail-value {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.order-credentials {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(123, 148, 240, 0.2);
}

.credentials-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.credentials-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(123, 148, 240, 0.2);
    margin-bottom: 0.75rem;
    box-shadow:
        0 2px 15px rgba(123, 148, 240, 0.1),
        inset 0 0 10px rgba(123, 148, 240, 0.03);
    transition: all 0.3s ease;
}

.credentials-item:hover {
    border-color: rgba(123, 148, 240, 0.4);
    box-shadow:
        0 4px 20px rgba(123, 148, 240, 0.15),
        inset 0 0 15px rgba(123, 148, 240, 0.05);
}

.credentials-label {
    color: #bdbdbd;
    font-size: 0.95rem;
    min-width: 120px;
}

.credentials-value {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    box-shadow:
        0 2px 10px rgba(123, 148, 240, 0.15),
        inset 0 0 8px rgba(123, 148, 240, 0.05);
}

.copy-btn:hover {
    background: rgba(123, 148, 240, 0.2);
    border-color: rgba(123, 148, 240, 0.5);
    transform: scale(1.1);
    box-shadow:
        0 4px 15px rgba(123, 148, 240, 0.25),
        inset 0 0 12px rgba(123, 148, 240, 0.1);
}

.copy-btn i {
    font-size: 1.25rem;
}

/* Account Page Mobile Styles */
@media (max-width: 768px) {
    .account-title {
        font-size: 2rem;
    }

    .account-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .account-info-right {
        align-items: flex-start;
        width: 100%;
    }

    .history-table-container {
        overflow-x: auto;
    }

    .order-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .order-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .credentials-item {
        flex-wrap: wrap;
    }

    .credentials-label {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .account-title {
        font-size: 1.75rem;
    }

    .account-info {
        padding: 1.5rem;
    }

    .history-table {
        min-width: 500px;
    }

    .credentials-value {
        font-size: 0.85rem;
    }
}

/* Admin Panel Styles */
.admin-page {
    margin-top: 2rem;
    padding-bottom: 3rem;
    animation: fadeIn 0.6s ease-out;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.admin-section {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.1);
}

.two-factor-section {
    margin-top: 1.5rem;
}

.two-factor-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(123, 148, 240, 0.2);
    border-radius: 16px;
    gap: 2rem;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.status-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.status-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.status-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .two-factor-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .status-actions {
        width: 100%;
    }

    .status-actions button {
        flex: 1;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    font-family: 'Inter', sans-serif;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 1rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(123, 148, 240, 0.1);
}

.stat-card:hover {
    background: rgba(20, 20, 25, 0.8);
    border-color: rgba(123, 148, 240, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(123, 148, 240, 0.3), 0 0 50px rgba(123, 148, 240, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #bdbdbd;
    font-family: 'Inter', sans-serif;
}

.game-stats {
    margin-top: 2rem;
}

.game-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.game-stat-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 15px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 0 15px rgba(123, 148, 240, 0.1);
}

.game-stat-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.game-stat-orders {
    font-size: 0.9rem;
    color: #bdbdbd;
    margin-bottom: 0.25rem;
}

.game-stat-revenue {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #7B94F0, #5A7AE8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.admin-table thead {
    background: rgba(0, 0, 0, 0.2);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table td {
    padding: 1rem;
    color: #fff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.status-sold {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.status-available {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-admin {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.btn-small {
    background: #7B94F0;
    border: none;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    box-shadow:
        inset 0 0 15px rgba(123, 148, 240, 0.4),
        0 2px 15px rgba(123, 148, 240, 0.4),
        0 0 25px rgba(123, 148, 240, 0.2);
}

.btn-small:hover {
    background: #8BA0F5;
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.5),
        0 4px 20px rgba(123, 148, 240, 0.6),
        0 0 35px rgba(123, 148, 240, 0.3);
}

.btn-danger {
    background: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.btn-danger:hover {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.5);
}

.btn-secondary {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: #7B94F0;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(20, 20, 25, 0.8);
    border-color: rgba(123, 148, 240, 0.6);
    color: #8BA0F5;
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

.admin-modal.active,
.admin-modal[style*="display: flex"],
.admin-modal[style*="display:flex"] {
    display: flex !important;
}

.admin-modal-content {
    position: relative;
    max-width: 450px;
    width: 90%;
    padding: 2rem;
    background: rgba(20, 20, 25, 0.98);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(123, 148, 240, 0.3), 0 0 60px rgba(123, 148, 240, 0.2);
    z-index: 2001;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #bdbdbd;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(20, 20, 25, 0.8);
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.image-preview-item {
    position: relative;
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(20, 20, 25, 0.6);
    transition: all 0.3s ease;
}

.image-preview-item:hover {
    border-color: rgba(123, 148, 240, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 148, 240, 0.3);
}

.image-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.image-preview-item button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 16px;
}

.image-preview-item button:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    color: #bdbdbd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    background: rgba(20, 20, 25, 0.8);
    border-color: rgba(123, 148, 240, 0.6);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.image-input-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.image-url-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 8px;
    background: rgba(20, 20, 25, 0.6);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.image-url-input:focus {
    outline: none;
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
}

.btn-remove-image {
    padding: 0.75rem;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}

.btn-remove-image:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

.btn-add-image {
    padding: 0.5rem 1rem;
    background: #7B94F0;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    box-shadow:
        inset 0 0 15px rgba(123, 148, 240, 0.4),
        0 2px 15px rgba(123, 148, 240, 0.4),
        0 0 25px rgba(123, 148, 240, 0.2);
}

.btn-add-image:hover {
    background: #8BA0F5;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 20px rgba(123, 148, 240, 0.5),
        0 4px 20px rgba(123, 148, 240, 0.6),
        0 0 35px rgba(123, 148, 240, 0.3);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.error-message {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: #f44336;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.success-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.code-input-container {
    margin-bottom: 1.5rem;
}

.code-label {
    display: block;
    color: #bdbdbd;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.code-inputs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(123, 148, 240, 0.3);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.code-input:focus {
    background: rgba(20, 20, 25, 0.8);
    border-color: rgba(123, 148, 240, 0.6);
    box-shadow: 0 0 20px rgba(123, 148, 240, 0.3);
    transform: scale(1.05);
}

.code-input:invalid {
    border-color: rgba(244, 67, 54, 0.5);
}

@media (max-width: 768px) {
    .code-input {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .code-inputs {
        gap: 0.5rem;
    }
}

/* Admin Panel Mobile Styles */
@media (max-width: 768px) {
    .admin-title {
        font-size: 2rem;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-table-container {
        overflow-x: auto;
    }

    .admin-modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
    }

    .admin-modal {
        padding: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }
}

/* Custom Notifications */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(to right, #212122 0%, #161616 50%, #323232 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 500px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.custom-notification-success .notification-content i {
    color: #4CAF50;
}

.custom-notification-error .notification-content i {
    color: #f44336;
}

.custom-notification-warning .notification-content i {
    color: #ff9800;
}

.custom-notification-info .notification-content i {
    color: #2196F3;
}

.notification-message {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    background: transparent;
    border: none;
    color: #bdbdbd;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.notification-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.custom-notification-success {
    border-left: 4px solid #4CAF50;
}

.custom-notification-error {
    border-left: 4px solid #f44336;
}

.custom-notification-warning {
    border-left: 4px solid #ff9800;
}

.custom-notification-info {
    border-left: 4px solid #2196F3;
}

/* Mobile notifications */
@media (max-width: 768px) {
    .custom-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }

    .custom-notification.show {
        transform: translateY(0);
    }
}
