/* Global Font Styles */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

/* Tech Font for Headings - Apply to ALL headings and important elements */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-new__title,
.premium-services__title,
.order-process__title,
.why-choose-smm__title,
.customer-reviews__title,
.api-features__title,
.hero-new__card-title,
.premium-services__card-title,
.order-process__step-title,
.why-choose-smm__feature-title,
.customer-reviews__card-name,
.api-features__item-title,
.hero-new__stat-number,
.premium-services__badge,
.hero-new__badge,
.order-process__badge,
.why-choose-smm__badge,
.customer-reviews__badge,
.api-features__badge,
.hero-new__btn,
.order-form-preview__submit,
.api-features__btn,
.navbar-brand,
.nav-link,
.btn,
.cta__title,
.footer__item-title,
.why-choose-smm__stats-number,
.order-process__title-word,
.why-choose-smm__title-word,
.customer-reviews__title-word,
.api-features__title-word,
.premium-services__title-word,
.hero-new__title-word {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-new__title-word,
.premium-services__title-word,
.order-process__title-word,
.why-choose-smm__title-word,
.customer-reviews__title-word,
.api-features__title-word {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 900;
}

.hero-new__stat-number,
.premium-services__card-title,
.why-choose-smm__stats-number,
.order-process__step-title,
.why-choose-smm__feature-title,
.customer-reviews__card-name,
.api-features__item-title {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 800;
}

/* Apply Inter font to all body text, descriptions, paragraphs */
p,
span,
div,
a,
li,
td,
th,
.hero-new__description,
.premium-services__description,
.order-process__subtitle,
.why-choose-smm__subtitle,
.customer-reviews__subtitle,
.api-features__subtitle,
.hero-new__stat-label,
.premium-services__card-desc,
.order-process__step-desc,
.why-choose-smm__feature-desc,
.customer-reviews__card-text,
.customer-reviews__card-role,
.api-features__item-desc,
.order-form-preview__label,
.order-form-preview__input,
.order-form-preview__select-text,
.footer-item-main__desc,
.footer-item-updates__desc,
.cta__subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #9333ea 100%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #00d4ff rgba(0, 0, 0, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hero Icons - Floating Social Media Icons */
.hero__illustration {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.hero-icons__container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.hero-icons__item {
    text-align: center;
    flex: 0 0 auto;
    animation: float 3s ease-in-out infinite;
}

.hero-icons__item:nth-child(1) {
    animation-delay: 0s;
}

.hero-icons__item:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-icons__item:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-icons__item:nth-child(4) {
    animation-delay: 0.9s;
}

.hero-icons__item:nth-child(5) {
    animation-delay: 1.2s;
}

.hero-icons__item:nth-child(6) {
    animation-delay: 1.5s;
}

.hero-icons__item:nth-child(7) {
    animation-delay: 1.8s;
}

.hero-icons__item:nth-child(8) {
    animation-delay: 2.1s;
}

.hero-icons__item:nth-child(9) {
    animation-delay: 2.4s;
}

.hero-icons__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-icons__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-icons__icon:hover::before {
    opacity: 1;
}

.hero-icons__icon:hover {
    transform: translateY(-5px) scale(1.05);
}

.hero-icons__icon svg {
    width: 2rem;
    height: 2rem;
    fill: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero-icons__icon:hover svg {
    transform: scale(1.1);
}

.hero-icons__icon--facebook {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4), 0 0 20px rgba(24, 119, 242, 0.2);
}

.hero-icons__icon--facebook:hover {
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.6), 0 0 30px rgba(24, 119, 242, 0.4);
}

.hero-icons__icon--instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.4), 0 0 20px rgba(228, 64, 95, 0.2);
}

.hero-icons__icon--instagram:hover {
    box-shadow: 0 12px 32px rgba(228, 64, 95, 0.6), 0 0 30px rgba(228, 64, 95, 0.4);
}

.hero-icons__icon--youtube {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4), 0 0 20px rgba(255, 0, 0, 0.2);
}

.hero-icons__icon--youtube:hover {
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4);
}

.hero-icons__icon--tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-icons__icon--tiktok:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.hero-icons__icon--twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    box-shadow: 0 8px 24px rgba(29, 161, 242, 0.4), 0 0 20px rgba(29, 161, 242, 0.2);
}

.hero-icons__icon--twitter:hover {
    box-shadow: 0 12px 32px rgba(29, 161, 242, 0.6), 0 0 30px rgba(29, 161, 242, 0.4);
}

.hero-icons__icon--linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.4), 0 0 20px rgba(0, 119, 181, 0.2);
}

.hero-icons__icon--linkedin:hover {
    box-shadow: 0 12px 32px rgba(0, 119, 181, 0.6), 0 0 30px rgba(0, 119, 181, 0.4);
}

.hero-icons__icon--telegram {
    background: linear-gradient(135deg, #0088CC 0%, #00A8E8 100%);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4), 0 0 20px rgba(0, 136, 204, 0.2);
}

.hero-icons__icon--telegram:hover {
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.6), 0 0 30px rgba(0, 136, 204, 0.4);
}

.hero-icons__icon--discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4), 0 0 20px rgba(88, 101, 242, 0.2);
}

.hero-icons__icon--discord:hover {
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.6), 0 0 30px rgba(88, 101, 242, 0.4);
}

.hero-icons__icon--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
}

.hero-icons__icon--whatsapp:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
}

.hero-icons__label {
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-size: 0.875rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-icons__item:hover .hero-icons__label {
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

/* New Hero Section Styles */
.hero-new {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f0c29 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.hero-new__content {
    position: relative;
    z-index: 1;
}

.hero-new__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-new__visual {
    position: relative;
    z-index: 1;
}

/* Platform Showcase */
.platform-showcase {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.platform-showcase__header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.platform-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.platform-showcase__badge svg {
    width: 14px;
    height: 14px;
}

.platform-showcase__title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.platform-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.platform-showcase__card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-showcase__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.platform-showcase__card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.2);
}

.platform-showcase__card:hover::before {
    opacity: 1;
}

.platform-showcase__card--facebook::before {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%);
}

.platform-showcase__card--instagram::before {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1) 0%, rgba(247, 119, 55, 0.1) 50%, rgba(252, 175, 69, 0.1) 100%);
}

.platform-showcase__card--youtube::before {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 68, 68, 0.1) 100%);
}

.platform-showcase__card--tiktok::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(51, 51, 51, 0.2) 100%);
}

.platform-showcase__card--twitter::before {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.1) 0%, rgba(13, 139, 217, 0.1) 100%);
}

.platform-showcase__card--linkedin::before {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1) 0%, rgba(0, 160, 220, 0.1) 100%);
}

.platform-showcase__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.platform-showcase__card:hover .platform-showcase__card-icon {
    transform: scale(1.1) rotate(5deg);
}

.platform-showcase__card--facebook .platform-showcase__card-icon {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.4);
}

.platform-showcase__card--instagram .platform-showcase__card-icon {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
    box-shadow: 0 4px 16px rgba(228, 64, 95, 0.4);
}

.platform-showcase__card--youtube .platform-showcase__card-icon {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
}

.platform-showcase__card--tiktok .platform-showcase__card-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.platform-showcase__card--twitter .platform-showcase__card-icon {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    box-shadow: 0 4px 16px rgba(29, 161, 242, 0.4);
}

.platform-showcase__card--linkedin .platform-showcase__card-icon {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
    box-shadow: 0 4px 16px rgba(0, 119, 181, 0.4);
}

.platform-showcase__card-icon svg {
    width: 28px;
    height: 28px;
}

.platform-showcase__card-content {
    position: relative;
    z-index: 1;
}

.platform-showcase__card-name {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.platform-showcase__card-stats {
    display: flex;
    gap: 16px;
}

.platform-showcase__card-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.platform-showcase__card-stat-value {
    color: #00d4ff;
    font-size: 1.25rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.platform-showcase__card-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-showcase__footer {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.platform-showcase__total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-showcase__total-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.platform-showcase__total-value {
    color: #00d4ff;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.platform-showcase__total-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (max-width: 991.98px) {
    .platform-showcase {
        padding: 24px;
    }

    .platform-showcase__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .platform-showcase__card {
        padding: 16px;
    }

    .platform-showcase__total {
        flex-direction: column;
        gap: 8px;
    }

    .platform-showcase__total-value {
        font-size: 1.5rem;
    }
}

/* Hero Stats Showcase */
.hero-stats-showcase {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-stats-showcase__header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.hero-stats-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hero-stats-showcase__badge svg {
    width: 14px;
    height: 14px;
}

.hero-stats-showcase__title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.hero-stats-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero-stats-showcase__card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats-showcase__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hero-stats-showcase__card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.2);
}

.hero-stats-showcase__card:hover::before {
    opacity: 1;
}

.hero-stats-showcase__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-stats-showcase__card:hover .hero-stats-showcase__card-icon {
    transform: scale(1.1);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-stats-showcase__card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00d4ff;
}

.hero-stats-showcase__card-content {
    position: relative;
    z-index: 1;
}

.hero-stats-showcase__card-value {
    color: #00d4ff;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    margin-bottom: 8px;
    font-family: 'Orbitron', monospace;
}

.hero-stats-showcase__card-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-stats-showcase__card-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00ff88;
    font-size: 0.75rem;
    font-weight: 500;
}

.hero-stats-showcase__card-trend svg {
    width: 14px;
    height: 14px;
}

.hero-stats-showcase__activity {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-stats-showcase__activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-stats-showcase__activity-header svg {
    width: 18px;
    height: 18px;
    stroke: #00d4ff;
}

.hero-stats-showcase__activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-stats-showcase__activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.hero-stats-showcase__activity-item:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.hero-stats-showcase__activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    margin-top: 6px;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-stats-showcase__activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stats-showcase__activity-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-stats-showcase__activity-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

@media (max-width: 991.98px) {
    .hero-stats-showcase {
        padding: 24px;
    }

    .hero-stats-showcase__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-stats-showcase__card {
        padding: 16px;
    }

    .hero-stats-showcase__card-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-new__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-new__visual {
        order: 1;
    }

    .hero-new__content {
        order: 0;
    }
}

.hero-new__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-new__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.hero-new__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-new__title-word {
    display: inline-block;
}

.hero-new__title-word--boost {
    color: #ffffff;
}

.hero-new__title-word--social {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.hero-new__title-word--power {
    color: #ff00ff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff;
    animation: glow-magenta 2s ease-in-out infinite alternate;
}

@keyframes glow-cyan {
    from {
        text-shadow:
            0 0 10px #00d4ff,
            0 0 20px #00d4ff,
            0 0 30px #00d4ff;
    }

    to {
        text-shadow:
            0 0 20px #00d4ff,
            0 0 30px #00d4ff,
            0 0 40px #00d4ff,
            0 0 50px #00d4ff;
    }
}

@keyframes glow-magenta {
    from {
        text-shadow:
            0 0 10px #ff00ff,
            0 0 20px #ff00ff,
            0 0 30px #ff00ff;
    }

    to {
        text-shadow:
            0 0 20px #ff00ff,
            0 0 30px #ff00ff,
            0 0 40px #ff00ff,
            0 0 50px #ff00ff;
    }
}

.hero-new__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-new__description-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.hero-new__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-new__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-new__btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.hero-new__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.hero-new__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.hero-new__btn--secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-new__btn-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.hero-new__stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-new__stat {
    text-align: left;
}

.hero-new__stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ff00ff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-new__stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-new {
        padding: 60px 0 40px;
    }

    .hero-new__title {
        font-size: 2.5rem;
    }

    .hero-new__description {
        font-size: 1rem;
    }

    .hero-new__buttons {
        flex-direction: column;
    }

    .hero-new__btn {
        width: 100%;
        justify-content: center;
    }

    .hero-new__stats {
        gap: 30px;
        justify-content: space-between;
    }

    .hero-new__stat {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 991.98px) {
    .hero__illustration {
        display: block !important;
    }

    .hero__illustration>div {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 1rem !important;
        padding: 1rem 0.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero__illustration>div::-webkit-scrollbar {
        display: none;
    }

    .hero-icons__item {
        flex: 0 0 auto !important;
        min-width: 60px !important;
    }

    .hero-icons__icon {
        width: 60px !important;
        height: 60px !important;
    }

    .hero-icons__icon svg {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    .hero-icons__label {
        font-size: 0.7rem !important;
    }
}

/* Premium Services Section */
.premium-services {
    background: linear-gradient(135deg, #0f0c29 0%, #1a0a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.premium-services__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.premium-services__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-services__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.premium-services__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.premium-services__title-word {
    display: inline-block;
    margin-right: 20px;
}

.premium-services__title-word--dichvu {
    color: #ffffff;
}

.premium-services__title-word--chuyennghiep {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.premium-services__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.premium-services__description-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.premium-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.premium-services__card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.premium-services__card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
}

.premium-services__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.premium-services__card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.premium-services__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.premium-services__card-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.premium-services__card-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-services__service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 0.9rem;
}

.premium-services__service-item svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .premium-services {
        padding: 60px 0;
    }

    .premium-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-services__title {
        font-size: 2rem;
    }

    .premium-services__title-word {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Order Process Section */
.order-process {
    background: linear-gradient(135deg, #16213e 0%, #0f0c29 50%, #1a0a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.order-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.order-process__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.order-process__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-process__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.order-process__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.order-process__title-word {
    display: inline-block;
    margin-right: 20px;
}

.order-process__title-word--dat {
    color: #ffffff;
}

.order-process__title-word--nhanh {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.order-process__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 50px;
}

.order-process__subtitle-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.order-process__steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-process__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.order-process__step:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(10px);
}

.order-process__step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.order-process__step-content {
    flex: 1;
}

.order-process__step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.order-process__step-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.order-process__form-preview {
    position: relative;
    z-index: 1;
}

.order-form-preview {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
}

.order-form-preview__header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.order-form-preview__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.order-form-preview__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form-preview__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-form-preview__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-form-preview__select {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-form-preview__select:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.15);
}

.order-form-preview__select-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.order-form-preview__select-text {
    flex: 1;
    font-size: 0.95rem;
}

.order-form-preview__input {
    padding: 14px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.order-form-preview__input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.order-form-preview__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.order-form-preview__quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-form-preview__quantity .order-form-preview__input {
    flex: 1;
}

.order-form-preview__quantity-label {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 60px;
}

.order-form-preview__summary {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-form-preview__summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-form-preview__summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.order-form-preview__summary-value {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1rem;
}

.order-form-preview__summary-total {
    color: #ff00ff;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.order-form-preview__submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.order-form-preview__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

@media (max-width: 991.98px) {
    .order-process {
        padding: 60px 0;
    }

    .order-process__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-process__form-preview {
        order: -1;
    }

    .order-process__title {
        font-size: 2rem;
    }

    .order-process__title-word {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Why Choose SMM Section */
.why-choose-smm {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f0c29 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-smm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.why-choose-smm__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-smm__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-smm__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.why-choose-smm__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-choose-smm__title-word {
    display: inline-block;
    margin-right: 20px;
}

.why-choose-smm__title-word--dangtin {
    color: #ffffff;
}

.why-choose-smm__title-word--hangdau {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.why-choose-smm__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 50px;
}

.why-choose-smm__subtitle-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.why-choose-smm__features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-smm__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose-smm__feature:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(10px);
}

.why-choose-smm__feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.why-choose-smm__feature-content {
    flex: 1;
}

.why-choose-smm__feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.why-choose-smm__feature-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.why-choose-smm__visual {
    position: relative;
    z-index: 1;
}

.why-choose-smm__stats-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-smm__stats-item {
    text-align: center;
}

.why-choose-smm__stats-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ff00ff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff;
    line-height: 1;
    margin-bottom: 12px;
}

.why-choose-smm__stats-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .why-choose-smm {
        padding: 60px 0;
    }

    .why-choose-smm__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-smm__visual {
        order: -1;
    }

    .why-choose-smm__title {
        font-size: 2rem;
    }

    .why-choose-smm__title-word {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Customer Reviews Section */
.customer-reviews {
    background: linear-gradient(135deg, #0f0c29 0%, #1a0a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.customer-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.customer-reviews__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.customer-reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.customer-reviews__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.customer-reviews__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.customer-reviews__title-word {
    display: inline-block;
    margin-right: 20px;
}

.customer-reviews__title-word--khachhang {
    color: #ffffff;
}

.customer-reviews__title-word--noi {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.customer-reviews__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.customer-reviews__subtitle-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.customer-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.customer-reviews__card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.customer-reviews__card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
}

.customer-reviews__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.customer-reviews__card-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-reviews__card-info {
    flex: 1;
}

.customer-reviews__card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.customer-reviews__card-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.customer-reviews__card-rating {
    display: flex;
    gap: 4px;
}

.customer-reviews__card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .customer-reviews {
        padding: 60px 0;
    }

    .customer-reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .customer-reviews__title {
        font-size: 2rem;
    }

    .customer-reviews__title-word {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* API Features Section */
.api-features {
    background: linear-gradient(135deg, #16213e 0%, #0f0c29 50%, #1a0a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.api-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.api-features__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.api-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.api-features__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.api-features__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.api-features__title-word {
    display: inline-block;
    margin-right: 20px;
}

.api-features__title-word--tichhop {
    color: #ffffff;
}

.api-features__title-word--de {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.api-features__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
}

.api-features__subtitle-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.api-features__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.api-features__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.api-features__item:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
}

.api-features__item-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.api-features__item-content {
    flex: 1;
}

.api-features__item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.api-features__item-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.api-features__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.api-features__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.api-features__visual {
    position: relative;
    z-index: 1;
}

.api-features__code-preview {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
}

.api-features__code-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.api-features__code-dots {
    display: flex;
    gap: 6px;
}

.api-features__code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.api-features__code-dots span:nth-child(1) {
    background: #ff5f56;
}

.api-features__code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.api-features__code-dots span:nth-child(3) {
    background: #27c93f;
}

.api-features__code-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
}

.api-features__code-body {
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.api-features__code-line {
    margin-bottom: 8px;
}

.api-features__code-keyword {
    color: #c792ea;
}

.api-features__code-variable {
    color: #82aaff;
}

.api-features__code-operator {
    color: #89ddff;
}

.api-features__code-function {
    color: #ffcb6b;
}

.api-features__code-string {
    color: #c3e88d;
}

.api-features__code-comment {
    color: #546e7a;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .api-features {
        padding: 60px 0;
    }

    .api-features__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .api-features__visual {
        order: -1;
    }

    .api-features__title {
        font-size: 2rem;
    }

    .api-features__title-word {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* CTA Section */
.cta-smm {
    background: linear-gradient(135deg, #0f0c29 0%, #1a0a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-smm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.cta-smm__container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-smm__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-smm__badge-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.cta-smm__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-smm__title-word {
    display: inline-block;
    margin-right: 20px;
}

.cta-smm__title-word--batdau {
    color: #ffffff;
}

.cta-smm__title-word--ngay {
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    animation: glow-cyan 2s ease-in-out infinite alternate;
}

.cta-smm__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-smm__subtitle-highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cta-smm__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-smm__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-smm__btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.cta-smm__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.cta-smm__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.cta-smm__btn--secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.cta-smm__btn svg {
    width: 20px;
    height: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .cta-smm {
        padding: 60px 0;
    }

    .cta-smm__title {
        font-size: 2rem;
    }

    .cta-smm__title-word {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .cta-smm__buttons {
        flex-direction: column;
    }

    .cta-smm__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Section */
.footer-smm {
    background: linear-gradient(135deg, #0a0618 0%, #0f0c29 50%, #1a0a2e 100%);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-smm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.footer-smm__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-smm__item {
    display: flex;
    flex-direction: column;
}

.footer-smm__logo {
    margin-bottom: 20px;
}

.footer-smm__logo img {
    max-height: 50px;
    width: auto;
}

.footer-smm__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-smm__desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-smm__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-smm__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-smm__contact-item:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-smm__contact-item svg {
    flex-shrink: 0;
}

.footer-smm__contact-item span {
    word-break: break-word;
}

.footer-smm__social {
    display: flex;
    gap: 12px;
}

.footer-smm__social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-smm__social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.footer-smm__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-smm__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-smm__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-smm__link:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    padding-left: 5px;
}

.footer-smm__foot {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-smm__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .footer-smm {
        padding: 60px 0 20px;
    }

    .footer-smm__content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-smm__item--main {
        grid-column: 1 / -1;
    }

    .footer-smm__foot {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-smm__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Navbar SMM */
.navbar-smm {
    background: linear-gradient(135deg, rgba(10, 6, 24, 0.95) 0%, rgba(15, 12, 41, 0.95) 50%, rgba(26, 10, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
}

.navbar-smm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.navbar-smm__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.navbar-smm__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-smm__brand:hover {
    transform: scale(1.05);
}

.navbar-smm__logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.navbar-smm__brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.navbar-smm__toggler {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar-smm__toggler:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.navbar-smm__toggler svg {
    width: 24px;
    height: 24px;
}

.navbar-smm__content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: space-between;
}

.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
}

.navbar-smm__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-smm__nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-smm__nav-item--dropdown {
    position: relative;
}

.navbar-smm__nav-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-smm__nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #a855f7 100%);
    transition: width 0.3s ease;
}

.navbar-smm__nav-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.navbar-smm__nav-link:hover::before {
    width: 80%;
}

.navbar-smm__nav-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.navbar-smm__nav-item--dropdown.show .navbar-smm__nav-arrow,
.navbar-smm__nav-item--dropdown .dropdown-toggle[aria-expanded="true"]~.navbar-smm__nav-arrow,
.navbar-smm__nav-item--dropdown .dropdown-toggle[aria-expanded="true"]+.navbar-smm__nav-arrow {
    transform: rotate(180deg);
}

.navbar-smm__nav-item--dropdown .dropdown-toggle[aria-expanded="true"]~svg.navbar-smm__nav-arrow {
    transform: rotate(180deg);
}

.navbar-smm__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.2);
    display: block;
}

.navbar-smm__nav-item--dropdown.show .navbar-smm__dropdown-menu,
.navbar-smm__dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.navbar-smm__dropdown-item {
    margin: 0;
}

.navbar-smm__dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-smm__dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00d4ff 0%, #a855f7 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.navbar-smm__dropdown-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.navbar-smm__dropdown-link:hover::before {
    transform: scaleY(1);
}

.navbar-smm__dropdown-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.navbar-smm__dropdown-link:hover svg {
    transform: translateX(4px);
}

.navbar-smm__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-smm__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-smm__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.navbar-smm__btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.navbar-smm__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.navbar-smm__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.navbar-smm__btn--secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@media (max-width: 991.98px) {
    .navbar-smm__container {
        flex-wrap: wrap;
    }

    .navbar-smm__toggler {
        display: flex;
    }

    .navbar-collapse {
        display: none !important;
        width: 100%;
        flex-basis: 100%;
        flex-grow: 0;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }

    .navbar-smm__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .navbar-smm__nav {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .navbar-smm__nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .navbar-smm__nav-link::before {
        display: none;
    }

    .navbar-smm__nav-item--dropdown {
        width: 100%;
    }

    .navbar-smm__nav-item--dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-smm__nav-item--dropdown .navbar-smm__nav-arrow {
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .navbar-smm__nav-item--dropdown.show .navbar-smm__nav-arrow,
    .navbar-smm__nav-item--dropdown .dropdown-toggle[aria-expanded="true"] .navbar-smm__nav-arrow,
    .navbar-smm__nav-item--dropdown.show .dropdown-toggle .navbar-smm__nav-arrow {
        transform: rotate(180deg);
    }

    .navbar-smm__dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0;
        margin-left: 16px;
        border: none;
        border-left: 2px solid rgba(0, 212, 255, 0.3);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        padding: 8px 0;
        display: none !important;
    }

    .navbar-smm__nav-item--dropdown.show .navbar-smm__dropdown-menu,
    .navbar-smm__nav-item--dropdown.show .dropdown-menu,
    .navbar-smm__nav-item--dropdown .dropdown-toggle[aria-expanded="true"]+.navbar-smm__dropdown-menu,
    .navbar-smm__nav-item--dropdown .dropdown-toggle[aria-expanded="true"]+.dropdown-menu,
    .navbar-smm__dropdown-menu.show,
    .dropdown-menu.show {
        display: block !important;
    }

    .navbar-smm__dropdown-link {
        padding-left: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .navbar-smm__dropdown-link svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .navbar-smm__dropdown-link:hover {
        padding-left: 24px;
    }

    .navbar-smm__buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .navbar-smm__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar-smm__toggler {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
    }
}

/* Loading Screen */
body.loading {
    overflow: hidden;
}

body.loading .page-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-content {
    transition: opacity 0.5s ease;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen--hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loading-screen__logo {
    margin-bottom: 40px;
}

.loading-screen__logo-img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    animation: logo-glow 2s ease-in-out infinite alternate;
}

.loading-screen__logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow:
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff;
    font-family: 'Orbitron', monospace;
    animation: logo-glow 2s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    from {
        text-shadow:
            0 0 10px #00d4ff,
            0 0 20px #00d4ff,
            0 0 30px #00d4ff;
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }

    to {
        text-shadow:
            0 0 20px #00d4ff,
            0 0 30px #00d4ff,
            0 0 40px #00d4ff,
            0 0 50px #00d4ff;
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    }
}

.loading-screen__spinner {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 40px;
}

.loading-screen__tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.loading-screen__tech-line {
    position: absolute;
    background: linear-gradient(90deg,
            transparent 0%,
            #00d4ff 20%,
            #00d4ff 80%,
            transparent 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    opacity: 0.6;
}

.loading-screen__tech-line--1 {
    width: 2px;
    height: 100%;
    left: 0;
    top: 0;
    animation: tech-line-vertical 2s ease-in-out infinite;
}

.loading-screen__tech-line--2 {
    width: 2px;
    height: 100%;
    left: 25%;
    top: 0;
    animation: tech-line-vertical 2s ease-in-out infinite 0.25s;
}

.loading-screen__tech-line--3 {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    animation: tech-line-vertical 2s ease-in-out infinite 0.5s;
}

.loading-screen__tech-line--4 {
    width: 2px;
    height: 100%;
    left: 75%;
    top: 0;
    animation: tech-line-vertical 2s ease-in-out infinite 0.75s;
}

.loading-screen__tech-line--5 {
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,
            transparent 0%,
            #00d4ff 20%,
            #00d4ff 80%,
            transparent 100%);
    animation: tech-line-horizontal 2s ease-in-out infinite;
}

.loading-screen__tech-line--6 {
    width: 100%;
    height: 2px;
    top: 25%;
    left: 0;
    background: linear-gradient(0deg,
            transparent 0%,
            #00d4ff 20%,
            #00d4ff 80%,
            transparent 100%);
    animation: tech-line-horizontal 2s ease-in-out infinite 0.25s;
}

.loading-screen__tech-line--7 {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    background: linear-gradient(0deg,
            transparent 0%,
            #00d4ff 20%,
            #00d4ff 80%,
            transparent 100%);
    animation: tech-line-horizontal 2s ease-in-out infinite 0.5s;
}

.loading-screen__tech-line--8 {
    width: 100%;
    height: 2px;
    top: 75%;
    left: 0;
    background: linear-gradient(0deg,
            transparent 0%,
            #00d4ff 20%,
            #00d4ff 80%,
            transparent 100%);
    animation: tech-line-horizontal 2s ease-in-out infinite 0.75s;
}

@keyframes tech-line-vertical {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 1);
    }
}

@keyframes tech-line-horizontal {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 1);
    }
}

.loading-screen__tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loading-screen__tech-hexagon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    animation: tech-pulse 2s ease-in-out infinite;
}

@keyframes tech-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 1));
    }
}

.loading-screen__tech-hexagon svg {
    width: 100%;
    height: 100%;
}

.loading-screen__tech-hexagon polygon,
.loading-screen__tech-hexagon circle {
    filter: drop-shadow(0 0 5px currentColor);
}

.loading-screen__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 600;
}

.loading-screen__text-main {
    color: #ffffff;
}

.loading-screen__text-dots {
    display: inline-flex;
    gap: 2px;
}

.loading-screen__text-dots span {
    display: inline-block;
    transition: opacity 0.3s ease;
    opacity: 0.3;
}

.loading-screen__progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.loading-screen__progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 212, 255, 0.5) 50%,
            transparent 100%);
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.loading-screen__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff 0%, #00ff88 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/* Toast Notification - Optimized for 240fps */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    will-change: transform, opacity;
    pointer-events: none;
    transform: translate3d(400px, 0, 0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification--show {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: all;
}

.toast-notification__wrapper {
    position: relative;
    min-width: 340px;
    max-width: 420px;
    will-change: transform;
}

.toast-notification__content {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(20, 25, 50, 0.98) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    padding: 18px 20px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.1) inset,
        0 0 60px rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.toast-notification__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.08) 0%,
            rgba(0, 255, 136, 0.08) 50%,
            rgba(0, 212, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.toast-notification__content:hover::before {
    opacity: 1;
}

.toast-notification__icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    z-index: 1;
}

.toast-notification__icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 1px solid rgba(0, 255, 136, 0.4);
    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    animation: toast-icon-pulse 2s ease-in-out infinite;
    will-change: transform, box-shadow;
}

@keyframes toast-icon-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 20px rgba(0, 255, 136, 0.3),
            inset 0 0 20px rgba(0, 255, 136, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow:
            0 0 30px rgba(0, 255, 136, 0.5),
            inset 0 0 30px rgba(0, 255, 136, 0.2);
    }
}

.toast-notification__icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.toast-notification__icon svg {
    stroke: #00ff88;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
    will-change: transform;
    animation: toast-icon-check 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes toast-icon-check {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.toast-notification__message {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.toast-notification__title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    animation: toast-text-slide 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.toast-notification__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    animation: toast-text-slide 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes toast-text-slide {
    from {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.toast-notification__close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background, border-color;
}

.toast-notification__close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.toast-notification__close:active {
    transform: rotate(90deg) scale(0.95);
}

.toast-notification__close svg {
    stroke: rgba(255, 255, 255, 0.7);
    width: 14px;
    height: 14px;
    transition: stroke 0.2s ease;
    will-change: stroke;
}

.toast-notification__close:hover svg {
    stroke: #00d4ff;
}

.toast-notification__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #00ff88 100%);
    border-radius: 0 0 16px 16px;
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
    animation: toast-progress 5s linear forwards;
    will-change: transform;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

@keyframes toast-progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 575.98px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translate3d(100vw, 0, 0);
    }

    .toast-notification--show {
        transform: translate3d(0, 0, 0);
    }

    .toast-notification__wrapper {
        min-width: auto;
        max-width: 100%;
    }

    .toast-notification__content {
        padding: 16px 18px;
    }

    .toast-notification__icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .loading-screen__progress {
        width: 250px;
    }

    .loading-screen__spinner {
        width: 120px;
        height: 120px;
    }

    .loading-screen__tech-hexagon {
        width: 50px;
        height: 50px;
    }
}

/* Performance optimizations for smooth 240fps */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-rendering: optimizeLegibility;
}

/* GPU acceleration for animations */
.loading-screen,
.loading-screen__spinner,
.loading-screen__tech-grid,
.loading-screen__tech-line,
.loading-screen__tech-core,
.loading-screen__tech-hexagon,
.toast-notification,
.toast-notification__wrapper,
.toast-notification__content,
.toast-notification__icon-wrapper,
.toast-notification__icon-bg,
.toast-notification__progress {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Terms Page */
.terms-page {
    min-height: calc(100vh - 200px);
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.terms-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.terms-page__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.terms-page__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Orbitron', monospace;
    text-shadow:
        0 0 20px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3);
}

.terms-page__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.terms-page__content {
    position: relative;
    z-index: 1;
}

.terms-page__body {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.1);
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
}

.terms-page__body h1,
.terms-page__body h2,
.terms-page__body h3,
.terms-page__body h4,
.terms-page__body h5,
.terms-page__body h6 {
    color: #00d4ff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.terms-page__body h1 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 10px;
}

.terms-page__body h2 {
    font-size: 1.75rem;
}

.terms-page__body h3 {
    font-size: 1.5rem;
}

.terms-page__body p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.terms-page__body ul,
.terms-page__body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.terms-page__body li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.terms-page__body strong {
    color: #00d4ff;
    font-weight: 600;
}

.terms-page__body a {
    color: #00d4ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.terms-page__body a:hover {
    color: #00ff88;
    border-bottom-color: rgba(0, 255, 136, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.terms-page__body code {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    padding: 2px 6px;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.terms-page__body blockquote {
    border-left: 4px solid rgba(0, 212, 255, 0.5);
    padding-left: 20px;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.terms-page__empty {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.terms-page__empty svg {
    color: rgba(0, 212, 255, 0.5);
    margin-bottom: 24px;
    opacity: 0.6;
}

.terms-page__empty h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.terms-page__empty p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.terms-page__back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.terms-page__back-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    color: #00d4ff;
    transform: translateX(-4px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.terms-page__back-btn:active {
    transform: translateX(-2px);
}

.terms-page__back-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.terms-page__back-btn:hover svg {
    transform: translateX(-2px);
}

@media (max-width: 991.98px) {
    .terms-page {
        padding: 60px 0 40px;
    }

    .terms-page__header {
        margin-bottom: 40px;
    }

    .terms-page__body {
        padding: 24px;
        font-size: 0.9375rem;
    }

    .terms-page__body h1 {
        font-size: 1.75rem;
    }

    .terms-page__body h2 {
        font-size: 1.5rem;
    }

    .terms-page__body h3 {
        font-size: 1.25rem;
    }
}