        .card2,
        .card4 {
            text-align: right
        }

        .baton,
        .faq-question,
        .faq-toggle {
            user-select: none
        }

        * {
            font-family: Montserrat, sans-serif;
            scroll-behavior: smooth
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(17, 15, 22, .95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(102, 31, 134, .3);
            box-shadow: 0 8px 32px rgba(83, 25, 110, .1);
            transition: .3s
        }

        .site-header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: transform .3s
        }

        .logo-icon:hover {
            transform: rotate(360deg)
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -.5px
        }

        .logo-highlight {
            background: linear-gradient(135deg, #b931f8, #53196e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center
        }

        .nav-link {
            color: rgba(255, 255, 255, .8);
            text-decoration: none;
            font-weight: 500;
            font-size: .95rem;
            position: relative;
            padding: 8px 0;
            transition: .3s
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #b931f8, #ffa07a);
            transition: width .3s
        }

        .nav-link.active,
        .nav-link:hover,
        .white_text {
            color: #fff
        }

        .nav-link.active::after,
        .nav-link:hover::after {
            width: 100%
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: 0 0;
            border: none;
            cursor: pointer;
            padding: 8px
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: .3s
        }

        .arrow,
        .clmn,
        .intro,
        .title,
        .xyu {
            position: relative
        }

        .xyu {
            background: linear-gradient(135deg, #110f16, #53196e, #110f16);
            background-size: 200% 200%;
            animation: 15s infinite gradientShift;
            margin-top: 75px
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0 50%
            }

            50% {
                background-position: 100% 50%
            }
        }

        .clmn {
            border: 2px solid #661f86;
            border-radius: 20px;
            padding: 30px;
            margin: 20px;
            background: rgba(102, 31, 134, .1);
            backdrop-filter: blur(10px);
            transition: .4s cubic-bezier(.4, 0, .2, 1);
            overflow: hidden
        }

        .clmn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(185, 49, 248, .1) 0, transparent 70%);
            transition: .6s;
            opacity: 0
        }

        .card2::before,
        .card3::before,
        .card4::before,
        .card::before {
            bottom: 0;
            transition: opacity .4s;
            opacity: 0
        }

        .clmn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 31, 134, .4);
            border-color: #b931f8
        }

        .card2:hover,
        .card3:hover,
        .card4:hover,
        .card:hover {
            transform: translateY(-10px) scale(1.02)
        }

        .clmn:hover::before {
            opacity: 1;
            transform: rotate(180deg)
        }

        .xyu1 {
            color: #ffa07a;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(255, 160, 122, .4);
            animation: 3s ease-in-out infinite glow
        }

        @keyframes glow {

            0%,
            100% {
                text-shadow: 0 0 20px rgba(255, 160, 122, .4)
            }

            50% {
                text-shadow: 0 0 30px rgba(255, 160, 122, .6)
            }
        }

        .title {
            z-index: 1
        }

        .title.white_text {
            text-shadow: 0 4px 20px rgba(0, 0, 0, .3)
        }

        p {
            line-height: 1.8;
            font-size: 1rem
        }

        /* Bright styling for content section headings and strong text */
        .content.white_text h3.title {
            color: #e066ff !important;
            text-shadow: 0 0 20px rgba(224, 102, 255, 0.4);
        }

        .content.white_text strong {
            color: #ffa07a;
            font-weight: 700;
        }

        /* Make strong text visible on dark backgrounds across all sections */
        .white_text strong,
        p.white_text strong {
            color: #fff;
            font-weight: 700;
        }

        .footer strong {
            color: #fff;
        }

        .table strong {
            color: #fff;
        }

        body {
            background-color: #110f16
        }

        .intro {
            background-size: cover;
            padding: 60px 0
        }

        .intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(185, 49, 248, .05) 0, transparent 70%)
        }

        .arrow::after,
        .arrow:before {
            content: "";
            position: absolute
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .card,
        .card2,
        .card3,
        .card4 {
            animation: .6s ease-out fadeInUp
        }

        .columns:first-child .card,
        .columns:first-child .card2,
        .columns:first-child .card3,
        .columns:first-child .card4 {
            animation-delay: .1s
        }

        .columns:nth-child(2) .card,
        .columns:nth-child(2) .card2,
        .columns:nth-child(2) .card3,
        .columns:nth-child(2) .card4 {
            animation-delay: .2s
        }

        .columns:nth-child(3) .card,
        .columns:nth-child(3) .card2,
        .columns:nth-child(3) .card3,
        .columns:nth-child(3) .card4 {
            animation-delay: .3s
        }

        .arrow {
            margin: 0 auto;
            background: linear-gradient(135deg, #53196e, #661f86);
            border-radius: 24px 24px 0 0;
            box-shadow: 0 -8px 32px rgba(83, 25, 110, .3);
            overflow: hidden
        }

        .card,
        .card2,
        .card3,
        .card4 {
            margin: 15px;
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
            transition: .4s cubic-bezier(.4, 0, .2, 1);
            overflow: hidden;
            position: relative;
            backdrop-filter: blur(10px);
            color: #fff
        }

        .arrow::after {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .1) 100%)
        }

        .arrow:before {
            border: 40px solid transparent;
            top: 100%;
            left: 50%;
            border-top-color: #661f86;
            margin-left: -40px;
            filter: drop-shadow(0 8px 16px rgba(83, 25, 110, .3))
        }

        .card2::before,
        .card3::before,
        .card4::before,
        .card::before,
        .footer::before {
            left: 0;
            right: 0;
            position: absolute;
            top: 0;
            content: ''
        }

        .gray_section {
            background-color: #f6f7fa
        }

        .card {
            background: radial-gradient(circle at top left, rgba(83, 58, 11, .4) 0, rgba(22, 20, 15, .9) 100%);
            border: 2px solid #865d11;
            border-radius: 24px
        }

        .card::before {
            background: linear-gradient(135deg, rgba(134, 93, 17, .1) 0, transparent 100%)
        }

        .card:hover {
            box-shadow: 0 20px 50px rgba(134, 93, 17, .4);
            border-color: #b98118
        }

        .card2:hover::before,
        .card3:hover::before,
        .card4:hover::before,
        .card:hover::before {
            opacity: 1
        }

        .card2 {
            background: radial-gradient(circle at top right, rgba(8, 20, 77, .4) 0, rgba(3, 0, 17, .9) 100%);
            border: 2px solid #0e2180;
            border-radius: 24px
        }

        .card2::before {
            background: linear-gradient(135deg, transparent 0, rgba(14, 33, 128, .1) 100%)
        }

        .card2:hover {
            box-shadow: 0 20px 50px rgba(14, 33, 128, .4);
            border-color: #1c42ff
        }

        .card3 {
            background: radial-gradient(circle at top left, rgba(63, 19, 83, .4) 0, rgba(17, 15, 22, .9) 100%);
            border: 2px solid #661f86;
            border-radius: 24px
        }

        .card3::before {
            background: linear-gradient(135deg, rgba(102, 31, 134, .1) 0, transparent 100%)
        }

        .card3:hover {
            box-shadow: 0 20px 50px rgba(102, 31, 134, .4);
            border-color: #b931f8
        }

        .card4 {
            background: radial-gradient(circle at top right, rgba(7, 78, 23, .4) 0, rgba(0, 17, 5, .9) 100%);
            border: 2px solid #0b7c26;
            border-radius: 24px
        }

        .card4::before {
            background: linear-gradient(135deg, transparent 0, rgba(11, 124, 38, .1) 100%)
        }

        .card4:hover {
            box-shadow: 0 20px 50px rgba(11, 124, 38, .4);
            border-color: #16f84c
        }

        .card1 {
            margin: 10px;
            box-shadow: none;
            background: rgba(102, 31, 134, .05);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(102, 31, 134, .2);
            transition: .3s
        }

        .card1:hover,
        .faq-category:hover {
            background: rgba(102, 31, 134, .1);
            border-color: rgba(185, 49, 248, .4);
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(102, 31, 134, .2)
        }

        .card_orange {
            background: linear-gradient(135deg, #53196e, #661f86);
            border-radius: 20px;
            margin: 15px;
            box-shadow: 0 8px 24px rgba(83, 25, 110, .3);
            padding: 20px;
            transition: .3s
        }

        .card_orange:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(83, 25, 110, .4)
        }

        .footer {
            color: #fff;
            background: linear-gradient(180deg, #110f16 0, #1b2a32 100%);
            padding: 40px 20px 20px;
            border-top: 2px solid rgba(102, 31, 134, .3);
            box-shadow: 0 -8px 32px rgba(0, 0, 0, .3);
            position: relative
        }

        .footer::before {
            height: 2px;
            background: linear-gradient(90deg, transparent, #b931f8, transparent)
        }

        li {
            list-style: none;
            background-size: 20px 20px;
            padding-left: 30px
        }

        .text_block {
            text-align: center
        }

        .card_img {
            border-radius: 16px;
            margin: auto;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
            transition: .4s cubic-bezier(.4, 0, .2, 1);
            border: 2px solid rgba(255, 255, 255, .1)
        }

        .card_img:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 16px 48px rgba(185, 49, 248, .3);
            border-color: rgba(185, 49, 248, .5)
        }

        .baton {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(230, 230, 230, .95));
            border: 2px solid transparent;
            padding: 12px 24px;
            margin: 0 8px 8px 0;
            cursor: pointer;
            transition: .3s cubic-bezier(.4, 0, .2, 1);
            border-radius: 12px;
            font-weight: 600;
            font-size: .95rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
        }

        .baton::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(185, 49, 248, .3);
            transform: translate(-50%, -50%);
            transition: width .6s, height .6s
        }

        .baton:hover {
            background: linear-gradient(135deg, #b931f8, #53196e);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(185, 49, 248, .4)
        }

        .baton:hover::before {
            width: 300px;
            height: 300px
        }

        .baton:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(185, 49, 248, .3)
        }

        [class*=modal-container] {
            z-index: 9999;
            position: fixed;
            left: 0;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 20px;
            background-color: rgba(0, 0, 0, .8);
            backdrop-filter: blur(10px);
            transition: opacity .3s, backdrop-filter .3s;
            pointer-events: none;
            opacity: 0
        }

        .faq-toggle,
        [class*=close] {
            display: flex;
            align-items: center
        }

        [class*=modal-content] {
            text-align: left;
            z-index: 10000;
            overflow-y: scroll !important;
            overflow-x: hidden;
            width: auto;
            max-width: 900px;
            max-height: 60vh;
            margin: auto;
            background: radial-gradient(circle at top left, rgba(63, 31, 68, .95) 0, rgba(22, 27, 33, .98) 100%);
            padding: 40px 30px 60px 40px;
            border-radius: 24px;
            border: 2px solid rgba(102, 31, 134, .3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
            transform: scale(.9);
            transition: transform .3s;
            position: relative;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: auto;
            scrollbar-color: #b931f8 rgba(0, 0, 0, 0.4);
            box-sizing: border-box
        }

        [class*=modal-container][class*=is-open] [class*=modal-content] {
            transform: scale(1)
        }

        [class*=close] {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 40px;
            height: 40px;
            font-size: 24px;
            cursor: pointer;
            background: rgba(255, 255, 255, .1);
            border: 2px solid rgba(255, 255, 255, .2);
            border-radius: 50%;
            justify-content: center;
            transition: .3s;
            color: #fff;
            z-index: 10000
        }

        .faq-question,
        .faq-question *,
        .faq-toggle {
            cursor: pointer !important
        }

        [class*=close]:hover {
            background: rgba(185, 49, 248, .3);
            border-color: #b931f8;
            transform: rotate(90deg)
        }

        [class*=modal-container][class*=is-open] {
            pointer-events: all;
            opacity: 1
        }

        [class*=modal-content]::-webkit-scrollbar {
            width: 14px
        }

        [class*=modal-content]::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, .5);
            border-radius: 10px;
            margin: 10px 0;
            border: 1px solid rgba(102, 31, 134, .3)
        }

        [class*=modal-content]::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #b931f8, #53196e);
            border-radius: 10px;
            border: 2px solid rgba(22, 27, 33, .5);
            box-shadow: 0 2px 8px rgba(185, 49, 248, .3)
        }

        [class*=modal-content]::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #d65fff, #661f86);
            border-color: rgba(22, 27, 33, .8);
            box-shadow: 0 4px 12px rgba(185, 49, 248, .5)
        }

        [class*=modal-content] p {
            margin-bottom: 20px
        }

        [class*=modal-content] p:last-child {
            margin-bottom: 0;
            padding-bottom: 20px
        }

        [class*=modal-content] h3 {
            margin-bottom: 20px;
            margin-top: 0
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto
        }

        .faq-category {
            margin-bottom: 3rem;
            background: rgba(102, 31, 134, .05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(102, 31, 134, .2);
            transition: .3s
        }

        .faq-category-title {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(185, 49, 248, .3);
            position: relative
        }

        .faq-category-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #b931f8, #ffa07a)
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 1rem
        }

        .faq-item {
            background: rgba(17, 15, 22, .8);
            border-radius: 16px;
            border: 1px solid rgba(102, 31, 134, .3);
            overflow: hidden;
            transition: .3s;
            backdrop-filter: blur(10px)
        }

        .faq-item:hover {
            border-color: rgba(185, 49, 248, .5);
            box-shadow: 0 8px 24px rgba(102, 31, 134, .2)
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            transition: .3s;
            background: linear-gradient(135deg, rgba(102, 31, 134, .1) 0, transparent 100%);
            position: relative;
            z-index: 1
        }

        .faq-question:hover {
            background: linear-gradient(135deg, rgba(185, 49, 248, .1) 0, transparent 100%)
        }

        .faq-question:active {
            background: linear-gradient(135deg, rgba(185, 49, 248, .2) 0, transparent 100%)
        }

        .faq-item.active .faq-toggle,
        .faq-toggle:hover {
            background: rgba(185, 49, 248, .2);
            border-color: #b931f8
        }

        .faq-question h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            flex: 1;
            padding-right: 1rem;
            pointer-events: none
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: 700;
            color: #b931f8;
            transition: .3s;
            width: 30px;
            height: 30px;
            justify-content: center;
            border-radius: 50%;
            background: rgba(185, 49, 248, .1);
            border: 2px solid rgba(185, 49, 248, .3);
            pointer-events: auto !important;
            position: relative;
            z-index: 999;
            flex-shrink: 0
        }

        .faq-toggle:hover {
            transform: scale(1.1)
        }

        .faq-toggle:active {
            transform: scale(.95)
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg)
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s, padding .4s, opacity .3s;
            background: rgba(0, 0, 0, .2);
            opacity: 0;
            padding: 0 1.5rem
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 1.5rem;
            opacity: 1
        }

        .faq-answer p {
            margin: 0;
            line-height: 1.7;
            color: rgba(255, 255, 255, .9);
            font-size: 1rem
        }

        @keyframes faqSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .faq-search-highlight {
            background: rgba(185, 49, 248, .3);
            padding: 2px 4px;
            border-radius: 4px;
            font-weight: 700
        }

        .faq-category-title::before {
            margin-right: .5rem;
            font-size: 1.2em
        }

        .faq-loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(185, 49, 248, .3);
            border-radius: 50%;
            border-top-color: #b931f8;
            animation: 1s ease-in-out infinite spin
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        .faq-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #b931f8, #53196e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: .3s;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(185, 49, 248, .3)
        }

        .faq-back-to-top.visible {
            opacity: 1;
            visibility: visible
        }

        .faq-back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(185, 49, 248, .4)
        }

        @media (max-width:768px) {
            .main-nav {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 75px);
                background: rgba(17, 15, 22, .98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 40px 20px;
                gap: 2rem;
                transition: left .3s;
                z-index: 999;
                border-top: 1px solid rgba(102, 31, 134, .3)
            }

            .main-nav.mobile-open {
                left: 0
            }

            .nav-link {
                font-size: 1.2rem;
                padding: 15px 0
            }

            .mobile-menu-toggle {
                display: flex
            }

            .mobile-menu-toggle.active span:first-child {
                transform: rotate(45deg) translate(5px, 5px)
            }

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px)
            }

            .faq-category {
                padding: 1.5rem;
                margin-bottom: 2rem
            }

            .faq-item.active .faq-answer,
            .faq-question {
                padding: 1rem
            }

            .faq-question h5 {
                font-size: 1rem;
                padding-right: .5rem
            }

            .faq-toggle {
                width: 25px;
                height: 25px;
                font-size: 1.2rem
            }

            .faq-answer p {
                font-size: .9rem
            }

            .faq-back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1rem
            }

            .xyu {
                margin-top: 60px
            }

            .card,
            .card2,
            .card3,
            .card4 {
                padding: 20px;
                margin: 10px 0
            }

            .logo-text {
                font-size: 1.2rem
            }

            .logo-icon {
                width: 32px;
                height: 32px
            }

            [class*=modal-container] {
                padding: 15px
            }

            [class*=modal-content] {
                padding: 25px 20px 50px 25px !important;
                width: 100%;
                max-width: 100%;
                max-height: 80vh;
                overflow-y: scroll !important
            }

            .baton {
                padding: 10px 20px;
                font-size: .9rem
            }
        }

/* Status Table Styles */
.status-table {
    background: rgba(17, 15, 22, 0.8);
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.status-table thead tr {
    background: rgba(185, 49, 248, 0.2);
}

.status-table th {
    color: #fff;
    border-color: rgba(185, 49, 248, 0.3);
}

.status-table td {
    color: #fff;
    border-color: rgba(185, 49, 248, 0.2);
}

.status-table tr {
    border-color: rgba(185, 49, 248, 0.2);
}

.status-online {
    color: #4caf50;
}

.status-offline {
    color: #ff9800;
}

.status-seized {
    color: #f44336;
}

/* Utility classes for repeated patterns */
.section-purple-bg {
    background: rgba(102, 31, 134, 0.05);
}

.section-gradient-bg {
    background: linear-gradient(135deg, rgba(17, 15, 22, 0.95), rgba(83, 25, 110, 0.1));
}

.accent-link {
    color: #b931f8;
}

.text-center {
    text-align: center;
}
