body {
    font-family: 'Poppins', sans-serif;
}

.linked {
    color: #ffffff;
    text-decoration: none;
}

.linked:hover {
    color: #ffffffc2;
}

.linked:active {
    color: #ffffff;
}

.linked:hover:active {
    color: #ffffffc2;
}

.glitch-btn {
    border: 2px solid #00ffcc;
    color: #00ffcc;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 10px 20px;
}

.glitch-btn:hover {
    background: #00ffcc;
    color: #000;
    box-shadow: 0px 0px 15px #00ffcc;
}

.glitch {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(158, 36, 216);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    position: relative;
    animation: glitch 1s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    color: rgb(216, 36, 178);
    background: rgb(0, 0, 0);
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 3px;
    text-shadow: -2px 0 rgb(0, 255, 255);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -3px;
    text-shadow: -2px 0 rgb(158, 36, 216);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }

    25% {
        clip: rect(12px, 9999px, 16px, 0);
    }

    50% {
        clip: rect(72px, 9999px, 74px, 0);
    }

    75% {
        clip: rect(32px, 9999px, 34px, 0);
    }

    100% {
        clip: rect(52px, 9999px, 54px, 0);
    }
}

@keyframes glitch {
    0% {
        transform: skew(0deg);
    }

    25% {
        transform: skew(5deg);
    }

    50% {
        transform: skew(-5deg);
    }

    75% {
        transform: skew(3deg);
    }

    100% {
        transform: skew(0deg);
    }
}

.btn-primary {
    background: transparent;
    border: 2px solid rgb(158, 36, 216);
    color: rgb(158, 36, 216);
    padding: 10px 30px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(158, 36, 216, 0.8);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: rgb(158, 36, 216);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(158, 36, 216, 1);
    text-shadow: 0px 0px 15px rgb(0, 0, 0);
    letter-spacing: 3px;
    transition: 0.4s ease-in-out;
    border: none;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 3px solid rgba(158, 36, 216, 0.6);
    box-shadow: 0 0 30px rgba(158, 36, 216, 0.8);
    transition: 0.5s;
    opacity: 0;
    transform: scale(1.3);
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

footer a:hover {
    text-decoration: underline;
    color: rgb(158, 36, 216);
    transition: 0.3s ease-in-out;
}

.loading span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgb(158, 36, 216);
    border-radius: 50%;
    animation: blinkLoading 1.4s infinite ease-in-out both;
}

.loading span:nth-child(2) {
    animation-delay: -0.2s;
}

.loading span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes blinkLoading {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

.matrix-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: rgb(10, 10, 10);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#matrix {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;

}

.glass-card {
    padding: 30px;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(158, 36, 216, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: fadeUp 1.2s ease-in-out;
}

.glass-card h1 {
    font-size: 2.5rem;
    color: rgb(158, 36, 216);
    text-shadow: 0px 0px 15px rgb(158, 36, 216);
}

.loading span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgb(158, 36, 216);
    border-radius: 50%;
    animation: blinkLoading 1.4s infinite ease-in-out both;
}

.loading span:nth-child(2) {
    animation-delay: -0.2s;
}

.loading span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 20px;
        max-width: 90%;
    }

    .glass-card h1 {
        font-size: 1.8rem;
    }

    .loading span {
        width: 10px;
        height: 10px;
    }
}

.form-control:focus-visible {
    border: 2px solid #493D9E;
    border-color: #493D9E;
    box-shadow: 0 0 3px 3px rgba(58, 49, 126, 0.53);
}

.btn-animated {
    background: linear-gradient(135deg, rgb(86, 13, 121), rgb(130, 56, 177));
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-animated:hover {
    background: linear-gradient(135deg, rgb(130, 56, 177), rgb(86, 13, 121));
    transform: scale(1.02);
}


.login-card {
    animation: fadeInUp 0.6s ease-in-out;
    backdrop-filter: blur(12px);
    /* background: rgba(255, 255, 255, 0.11); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 15px;
    transition: transform 0.2s ease-in-out;
}

.login-card:hover {
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1117, #161b22);
    color: #fff;
    position: relative;
    padding: 4rem 0;
}

.hero h1 span {
    background: linear-gradient(90deg, #0d6efd, #ff007a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .btn {
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-visual img {
    max-width: 90%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.typing-text {
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #0d6efd;
    width: 0;
    animation: typing 3s steps(40, end) forwards, blink 0.75s infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.neon-btn {
    transition: all 0.3s ease;
}

.neon-btn:hover {
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.8);
    transform: translateY(-2px);
}

section {
    padding: 5rem 1rem;
    position: relative;
    z-index: 2;
}

.glass-card-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.glass-card-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.pricing-plan {
    border: 2px solid transparent;
    transition: border .3s;
}

.pricing-plan:hover {
    border: 2px solid #0d6efd;
}

footer {
    background: #000;
    padding: 2rem;
    font-size: 0.9rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1.2s ease-out forwards;
}

.quick-link {
    text-decoration: none;
    color: #ffffff;
}

.quick-link:hover {
    color: rgb(0, 255, 255);
    text-decoration: none;
}


.btn-modern-primary {
    background: linear-gradient(135deg, #560D79, #6B1FB3);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -10px rgba(107, 31, 179, 0.5);
}

.btn-modern-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(107, 31, 179, 0.7);
    color: white;
}

.btn-modern-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.floating-1 {
    top: 20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.fw-black {
    font-weight: 800;
}

.text-primary-light {
    color: #8E2DE2;
}

.shadow-purple {
    box-shadow: 0 0 15px rgba(107, 31, 179, 0.4);
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border: 2px solid #0a0a0b;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff88;
}

.custom-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.custom-link:hover,
.custom-link.active {
    color: #fff !important;
}

.custom-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #6B1FB3;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-link:hover::after {
    transform: scaleX(1);
}

.btn-nav-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-nav-contact:hover {
    background: #6B1FB3;
    border-color: #6B1FB3;
    color: white;
    transform: translateY(-1px);
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(107, 31, 179, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(107, 31, 179, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: #6B1FB3;
    transform: rotate(-5deg) scale(1.1);
}

.feature-card:hover .icon-box i {
    color: white !important;
}

.featured-border {
    border: 1px solid rgba(107, 31, 179, 0.3);
}

.text-primary-gradient {
    background: linear-gradient(90deg, #8E2DE2, #6B1FB3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.featured-plan {
    background: rgba(107, 31, 179, 0.05);
    border: 2px solid #6B1FB3;
    box-shadow: 0 0 40px rgba(107, 31, 179, 0.15);
    transform: translateY(-10px);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #560D79, #6B1FB3);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-vip-cta {
    background: #6B1FB3;
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(107, 31, 179, 0.4);
    transition: all 0.3s ease;
}

.btn-vip-cta:hover {
    background: #560D79;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(107, 31, 179, 0.6);
}

.fw-black {
    font-weight: 900;
}

.custom-faq .faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-faq .faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(107, 31, 179, 0.3);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
    color: #6B1FB3;
}

.faq-trigger:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-body {
    padding: 0 30px 24px 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-body p {
    margin-bottom: 0;
}

.cta-glass-wrapper {
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.7), rgba(10, 10, 12, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.text-gradient-purple {
    background: linear-gradient(90deg, #fff, #6B1FB3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #560D79, #6B1FB3);
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(107, 31, 179, 0.4);
}

.btn-modern-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(107, 31, 179, 0.6);
}

.py-6 {
    padding: 100px 0;
}

.fw-black {
    font-weight: 900;
}

.text-gradient-syndicate {
    background: linear-gradient(90deg, #0d6efd, #ff007a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color: #fff;
}

.line-height-lg {
    line-height: 1.8;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

.fw-black {
    font-weight: 900;
}

.btn-floating-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #560D79, #6B1FB3);
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(107, 31, 179, 0.4);
}

.btn-floating-top i {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-floating-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #6B1FB3, #8e2de2);
    box-shadow: 0 12px 30px rgba(107, 31, 179, 0.6);
}

.btn-floating-top:hover i {
    transform: translateY(-2px);
}

.btn-floating-top.active {
    opacity: 1;
    visibility: visible;
}


.custom-syndicate-table {
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.custom-syndicate-table thead {
    background: linear-gradient(135deg, #5a189a, #7b2cbf);
    border: none;
}

.custom-syndicate-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
}

.custom-syndicate-table td {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05) !important;
    padding: 12px !important;
}

.table-premium-row td {
    background: rgba(255, 193, 7, 0.1) !important;
    border-top: 2px solid rgba(255, 193, 7, 0.2) !important;
}

.pay-method-img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s;
}

.pay-method-img:hover {
    transform: scale(1.1);
}

.fw-black {
    font-weight: 900;
}

.border-purple {
    border-color: #7b2cbf !important;
}

.professional-glass {
    background: #0a0a0c !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(107, 31, 179, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.pro-modal-header {
    background: linear-gradient(180deg, rgba(86, 13, 121, 0.4) 0%, transparent 100%);
    position: relative;
}

.icon-badge {
    width: 50px;
    height: 50px;
    background: #6B1FB3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(107, 31, 179, 0.6);
}

.header-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #6B1FB3, transparent);
    width: 100%;
}

.input-glow-group {
    position: relative;
}

.pro-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.input-wrapper:focus-within {
    border-color: #6B1FB3;
    box-shadow: 0 0 15px rgba(107, 31, 179, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 14px 14px 45px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B1FB3;
    font-size: 1.2rem;
}

.btn-syndicate-primary {
    background: linear-gradient(135deg, #560D79, #6B1FB3);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-syndicate-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 31, 179, 0.4);
}

.btn-buy-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-buy-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #0088cc;
}

.tech-bar {
    background: rgba(0, 0, 0, 0.3);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fw-black {
    font-weight: 900;
}

.tracking-widest {
    letter-spacing: 4px;
}

.hero-visual-container {
    perspective: 1000px;
}

.main-visual-wrapper {
    position: relative;
    z-index: 1;
}

.glass-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white !important;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.glass-tag:hover {
    background: rgba(107, 31, 179, 0.2);
    border-color: rgba(107, 31, 179, 0.5);
    transform: scale(1.05) translateY(-5px) !important;
}

.float-anim-1 {
    top: 15%;
    left: -10%;
    animation: float-y 4s ease-in-out infinite;
}

.float-anim-2 {
    bottom: 20%;
    right: -5%;
    animation: float-y 5s ease-in-out infinite reverse;
}

@keyframes float-y {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .float-anim-1 {
        top: 5%;
        left: 5%;
        font-size: 10px;
        padding: 6px 12px;
    }

    .float-anim-2 {
        bottom: 5%;
        right: 5%;
        font-size: 10px;
        padding: 6px 12px;
    }

    .glass-tag img {
        width: 14px;
    }
}

.fw-black {
    font-weight: 600;
}