@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ========== ANNOUNCEMENT BANNER ========== */
.ann-banner {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: linear-gradient(90deg, #1a0533 0%, #0d0a2e 40%, #001a2e 100%);
    border-bottom: 1px solid rgba(99, 77, 220, 0.35);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    max-height: 80px;
}

.ann-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(120, 80, 255, 0.09) 50%, transparent 70%);
    animation: ann-shimmer 3s linear infinite;
}

@keyframes ann-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.ann-banner.ann-hidden {
    max-height: 0 !important;
    padding: 0 !important;
    opacity: 0;
}

.ann-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.ann-badge {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.55);
    animation: badge-pulse 2.2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    }

    50% {
        box-shadow: 0 0 22px rgba(124, 58, 237, 0.9);
    }
}

.ann-text {
    color: #c9d4f5;
    font-size: 0.88rem;
    white-space: nowrap;
}

.ann-text strong {
    color: #e0d4ff;
}

.ann-price {
    color: #00f0c0 !important;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(0, 240, 192, 0.6);
}

.ann-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 77, 220, 0.3);
    border-radius: 8px;
    padding: 4px 10px;
}

.ann-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 28px;
}

.ann-timer-block span {
    font-size: 1rem;
    font-weight: 700;
    color: #a78bfa;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.ann-timer-block small {
    font-size: 0.55rem;
    color: #7c7ca0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 1px;
}

.ann-timer-sep {
    color: #6344dc;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.ann-cta {
    background: linear-gradient(135deg, #7c3aed, #00c896);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 30px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.5);
    position: relative;
}

.ann-cta:hover {
    transform: scale(1.06);
    filter: brightness(1.15);
    box-shadow: 0 0 22px rgba(124, 58, 237, 0.75);
}

.ann-close {
    background: none;
    border: none;
    color: #7c7ca8;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    line-height: 1;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.ann-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .ann-banner {
        padding: 8px 14px;
        max-height: 110px;
    }

    .ann-text {
        font-size: 0.78rem;
    }

    .ann-timer {
        display: none;
    }

    .ann-badge {
        font-size: 0.65rem;
    }
}

/* ========== END ANNOUNCEMENT BANNER ========== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #05070f;
    color: #edf2ff;
    font-family: 'Inter', 'Rajdhani', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

/* animated bg + particles */
.orb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #050510;
    transition: background 0.4s ease;
}

.orb-bg::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 77, 220, 0.38) 0%, transparent 70%);
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: background 0.4s ease;
}

.orb-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.24) 0%, transparent 70%);
    bottom: -120px;
    right: -100px;
    pointer-events: none;
    transition: background 0.4s ease;
}

.orb-extra {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 150, 220, 0.18) 0%, transparent 70%);
    bottom: 120px;
    left: -80px;
    pointer-events: none;
    z-index: -2;
}

canvas#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
    z-index: -1;
    transition: background-image 0.4s ease;
}

/* ========== HERO TEXT ========== */
.crack-glitch-wrapper {
    display: inline-block;
}

.glitch-text {
    display: inline-block;
}

.glitch-text .main-word {
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.12);
}

.glitch-text::before,
.glitch-text::after,
.crack-effect::after {
    display: none;
}

.hero-brand-name {
    color: #0ff;
    text-shadow: 0 0 8px #0ff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}
.glass-btn{
    background: linear-gradient(135deg, #22c1ff, #2563eb);
    color: white;
    border: none;

    padding: 12px 28px;
    height: 48px;

    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
    transition: all .25s ease;
}

.glass-btn:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #38d0ff, #3b82f6);
}
nav .glass-btn{
    background: linear-gradient(135deg,#22c1ff,#2563eb) !important;
    border: none !important;
    color: #fff !important;
}
.hero-brand-name{
    text-shadow:
        0 0 6px #0ff,
        0 0 12px #0ff;
}

/* ================= NAVBAR ================= */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    height: 88px;
    backdrop-filter: blur(12px);
    background: rgba(5, 7, 18, 0.75);
    border-bottom: 1px solid rgba(0, 240, 255, 0.18);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
    cursor: pointer;
}

.logo img {
    display: block;
    width: 180px;
    height: auto;
    box-shadow: none;
    filter: none;
}
.logo {
    box-shadow: none;
    background: transparent;
}

.logo img:hover {
    transform: scale(1.05);
    filter: none

}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #cbd5e6;
    position: relative;
}

.nav-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #00ffff;
    transition: 0.3s;
}

.nav-links li:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 15px #00ffff;
}

.nav-links li:hover::after {
    width: 100%;
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.glass-btn {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.35);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.glass-btn:hover {
    background: rgba(0, 255, 255, 0.08);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.35);
}

.neon-btn {
    background: linear-gradient(90deg, #00cfff, #004cff);
    border: none;
    padding: 10px 26px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 18px rgba(0, 195, 255, 0.45);
}

.neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(0, 195, 255, 0.7);
}

/* ── Theme Toggle Button ── */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: 0.3s;
    flex-shrink: 0;
    color: #0ff;
}

.theme-toggle:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.35);
    transform: rotate(20deg) scale(1.05);
}

/* Night mode: show sun icon (click to go day) */
.theme-toggle .icon-sun {
    display: inline;
}

.theme-toggle .icon-moon {
    display: none;
}

/* Day mode: show moon icon (click to go night) */
body.day-mode .theme-toggle .icon-sun {
    display: none;
}

body.day-mode .theme-toggle .icon-moon {
    display: inline;
}

body.day-mode .theme-toggle {
    border-color: rgba(37, 99, 235, 0.4);
    color: #2563eb;
}

body.day-mode .theme-toggle:hover {
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.25);
    transform: rotate(20deg) scale(1.05);
}

/* ================= HERO ================= */
.hero {
    padding: 70px 7% 50px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 0.5px solid #0ff8;
    margin-bottom: 28px;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(145deg, #FFFFFF, #7df9ff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    transition: background 0.4s ease;
}

.hero-para {
    font-size: 1.2rem;
    color: #b9c7dd;
    max-width: 650px;
    margin: 28px auto;
    transition: color 0.4s ease;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 50px;
}

.primary-cta {
    background: linear-gradient(100deg, #0af, #2563eb);
    border: none;
    padding: 14px 42px;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.secondary-cta {
    background: linear-gradient(100deg, #0af, #2563eb);
    border: 1px solid #0af8;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointerx;
    transition: 0.2s;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    background: rgba(12, 20, 35, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.55);
    padding: 24px 32px;
    border-radius: 32px;
    min-width: 180px;
    transition: 0.3s;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: #0ff;
    box-shadow: 0 20px 35px -12px #0ff2;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0ff;
    transition: color 0.4s ease;
}

/* ================= HOW IT WORKS ================= */
.hiw {
    background: transparent;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hiw-orb1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.06) 0%, transparent 70%);
    top: 0;
    right: 0;
    border-radius: 50%;
    pointer-events: none;
}

.hiw-orb2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.04) 0%, transparent 70%);
    bottom: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
}

.hiw-top {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hiw-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
    transition: color 0.4s ease, border-color 0.4s ease;
}

.hiw-top h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.hiw-top h2 span {
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.hiw-divider {
    width: 80px;
    height: 2px;
    background: #0ff;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px #0ff;
    border-radius: 2px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.hiw-sub {
    color: #aaa;
    font-size: 15px;
    transition: color 0.4s ease;
}

.hiw-steps {
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
}

.hiw-card {
    background: rgba(14, 14, 26, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.4s ease;
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    
}

.hiw-card:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.12);
    transform: translateY(-4px);
}

.hiw-num-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.hiw-num {
    width: 64px;
    height: 64px;
    border: 2px solid #0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0ff;
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), inset 0 0 20px rgba(0, 255, 255, 0.05);
    margin: 0 auto;
    text-shadow: 0 0 10px #0ff;
    position: relative;
    z-index: 1;
    transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, text-shadow 0.4s ease;
}

.hiw-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 50%;
    animation: ringpulse 2s ease-in-out infinite;
    transition: border-color 0.4s ease;
}

@keyframes ringpulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.hiw-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.hiw-card .step-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #0ff;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: color 0.4s ease;
}

.hiw-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.hiw-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    transition: color 0.4s ease;
}

.hiw-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 255, 255, 0.35);
    font-size: 22px;
    transition: color 0.4s ease;
}

.hiw-cta {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    border: 1px solid #0ff;
    border-radius: 8px;
    color: #0ff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.2);
    text-shadow: 0 0 8px #0ff;
}

.hiw-cta:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 30px #0ff;
    text-shadow: none;
}

/* ================= PRICING ================= */
.pricing-section {
    padding: 70px 8%;
    background: transparent;
    color: white;
    text-align: center;
}

.pricing-heading h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.pricing-heading p {
    color: #aaa;
    margin-bottom: 50px;
    font-size: 1.1rem;
    transition: color 0.4s ease;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    position: relative;
    width: 320px;
    padding: 40px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.18);
    color: white;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.25);
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 3rem;
    color: cyan;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.duration {
    color: #aaa;
    margin-bottom: 25px;
    transition: color 0.4s ease;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin: 15px 0;
    font-size: 1rem;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: cyan;
    color: black;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, background 0.4s ease, color 0.4s ease;
}

.plan-btn:hover {
    transform: scale(1.05);
}

.premium-card {
    border: 1px solid cyan;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.25);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: cyan;
    color: black;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: background 0.4s ease, color 0.4s ease;
}

.premium-btn {
    background: white;
    color: black;
}

/* ================= CONTACT ================= */
.rd-contact {
    background: transparent;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.rd-orb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.07) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    border-radius: 50%;
}

.rd-orb2 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
    border-radius: 50%;
}

.rd-top {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.rd-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.2), inset 0 0 12px rgba(0, 255, 255, 0.05);
    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.rd-contact h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.rd-contact h2 span {
    color: #0ff;
    text-shadow: 0 0 20px #0ff, 0 0 40px rgba(0, 255, 255, 0.5);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.rd-divider {
    width: 80px;
    height: 2px;
    background: #0ff;
    margin: 16px auto 24px;
    box-shadow: 0 0 10px #0ff, 0 0 20px rgba(0, 255, 255, 0.5);
    border-radius: 2px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.rd-sub {
    color: #aaa;
    font-size: 15px;
    transition: color 0.4s ease;
}

.rd-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rd-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rd-info-card {
    background: rgba(14, 14, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.4s ease;
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.rd-info-card:hover {
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25), inset 0 0 10px rgba(0, 255, 255, 0.05);
    transform: translateY(-2px);
}

.rd-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 255, 255, 0.07);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.rd-info-card .ilabel {
    font-size: 11px;
    color: #0ff;
    letter-spacing: 1px;
    margin-bottom: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 8px #0ff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.rd-info-card .ival {
    font-size: 14px;
    color: #e0e0e0;
    transition: color 0.4s ease;
}

.rd-note {
    background: rgba(14, 14, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.45);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.rd-note span {
    color: #0ff;
    text-shadow: 0 0 8px #0ff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.rd-form {
    background: rgba(14, 14, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.08), inset 0 0 20px rgba(0, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.rd-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.rd-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.rd-group label {
    font-size: 11px;
    color: #0ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.rd-group input,
.rd-group select,
.rd-group textarea {
    background: #13131f;
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.4s ease, color 0.4s ease;
    font-family: inherit;
    width: 100%;
}

.rd-group input:focus,
.rd-group select:focus,
.rd-group textarea:focus {
    border-color: #0ff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.3), inset 0 0 6px rgba(0, 255, 255, 0.05);
}

.rd-group textarea {
    min-height: 100px;
    resize: vertical;
}

.rd-group select option {
    background: #13131f;
}

.rd-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.rd-check input[type=checkbox] {
    accent-color: #0ff;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.rd-check label {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: color 0.4s ease;
}

.rd-submit {
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1px solid #0ff;
    border-radius: 8px;
    color: #0ff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s, border-color 0.4s ease;
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.2);
    text-shadow: 0 0 8px #0ff;
}

.rd-submit:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 25px #0ff, 0 0 50px rgba(0, 255, 255, 0.4);
    transform: translateY(-1px);
    text-shadow: none;
}

.rd-submit:active {
    transform: translateY(0);
}

/* ================= FOOTER ================= */
.footer {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0a1f30;
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    margin-top: 60px;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}

.footer-glow1 {
    width: 300px;
    height: 300px;
    background: #00d9ff;
    top: -100px;
    left: -100px;
}

.footer-glow2 {
    width: 250px;
    height: 250px;
    background: #7b61ff;
    bottom: -100px;
    right: -100px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 70px 8% 50px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-left p {
    color: #b9c4d3;
    max-width: 420px;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 35px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.45);
    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #00d9ff, #7b61ff);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.footer-logo-img {
    width: 130px;
    height: 125px;
    display: flex;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.35);
}

.top-btn {
    padding: 15px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: white;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.95rem;
    font-weight: 600;
}

.top-btn:hover {
    background: linear-gradient(135deg, #00d9ff, #7b61ff);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.35);
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-column a {
    text-decoration: none;
    color: #b9c4d3;
    transition: 0.3s;
    width: fit-content;
}

.footer-column a:hover {
    color: #00d9ff;
    transform: translateX(5px);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 18px;
    background: linear-gradient(to right, #00d9ff, #7b61ff);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 9px;
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-radius: 8px;
    z-index: 9999;
    flex-shrink: 0;
    transition: border-color 0.4s ease;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0ff;
    border-radius: 2px;
    transition: all 0.3s ease, background 0.4s ease;
    box-shadow: 0 0 5px #0ff;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 20, 0.97);
    backdrop-filter: blur(20px);
    z-index: 9000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.mobile-menu ul li {
    font-size: 1.4rem;
    font-weight: 700;
    color: #cbd5e6;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.mobile-menu ul li:hover {
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.mobile-menu .mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
}

.mobile-menu .mobile-btns button {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 1rem;
}

/* =====================================================
   DAY MODE OVERRIDES
   ===================================================== */

body.day-mode {
    background: #F8FAFC;
    color: #111827;
}

body.day-mode .orb-bg {
    background: #EEF4FF;
}

body.day-mode .orb-bg::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 70%);
}

body.day-mode .orb-bg::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

body.day-mode .grid-overlay {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
}

/* Navbar */
body.day-mode nav {
    background: rgba(248, 250, 252, 0.92);
    border-bottom: 1px solid #E5E7EB;
}

body.day-mode .nav-links li {
    color: #374151;
}

body.day-mode .nav-links li:hover {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .nav-links li::after {
    background: #2563EB;
}

body.day-mode .glass-btn {
    border-color: rgba(37, 99, 235, 0.4);
    color: #111827;
}

body.day-mode .glass-btn:hover {
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.18);
}

body.day-mode .hamburger {
    border-color: rgba(37, 99, 235, 0.35);
}

body.day-mode .hamburger span {
    background: #2563EB;
    box-shadow: none;
}

/* Hero */
body.day-mode .hero-badge {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.4);
    color: #2563EB;
}

body.day-mode .hero h1 {
    background: linear-gradient(145deg, #111827, #2563EB, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.day-mode .hero-brand-name {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .glitch-text .main-word {
    color: #111827;
    text-shadow: none;
}

body.day-mode .hero-para {
    color: #6B7280;
}

body.day-mode .stat-item {
    background: rgba(255, 255, 255, 0.78);
    border-color: #E5E7EB;
    color: #111827;
}

body.day-mode .stat-item:hover {
    border-color: #60A5FA;
    box-shadow: 0 20px 35px -12px rgba(37, 99, 235, 0.12);
}

body.day-mode .stat-number {
    color: #2563EB;
}

/* How It Works */
body.day-mode .hiw-badge {
    color: #2563EB;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.1);
}

body.day-mode .hiw-top h2 {
    color: #111827;
    text-shadow: none;
}

body.day-mode .hiw-top h2 span {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .hiw-divider {
    background: #2563EB;
    box-shadow: none;
}

body.day-mode .hiw-sub {
    color: #6B7280;
}

body.day-mode .hiw-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: #E5E7EB;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.05);
}

body.day-mode .hiw-card:hover {
    border-color: #60A5FA;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

body.day-mode .hiw-num {
    border-color: #2563EB;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.06);
    box-shadow: none;
    text-shadow: none;
}

body.day-mode .hiw-ring {
    border-color: rgba(37, 99, 235, 0.2);
}

body.day-mode .hiw-card .step-tag {
    color: #2563EB;
}

body.day-mode .hiw-card h3 {
    color: #111827;
    text-shadow: none;
}

body.day-mode .hiw-card p {
    color: #6B7280;
}

body.day-mode .hiw-arrow {
    color: rgba(37, 99, 235, 0.35);
}

/* Pricing */
body.day-mode .pricing-heading h1 {
    color: #111827;
}

body.day-mode .pricing-heading p {
    color: #6B7280;
}

body.day-mode .pricing-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: #E5E7EB;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.05);
    color: #111827;
}

body.day-mode .pricing-card:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.14);
}

body.day-mode .pricing-card h3 {
    color: #2563EB;
}

body.day-mode .duration {
    color: #6B7280;
}

body.day-mode .premium-card {
    border-color: #60A5FA;
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.15);
}

body.day-mode .popular-tag {
    background: #2563EB;
    color: #fff;
}

body.day-mode .plan-btn {
    background: #2563EB;
    color: #fff;
}

body.day-mode .premium-btn {
    background: #111827;
    color: #fff;
}

/* Contact */
body.day-mode .rd-badge {
    color: #2563EB;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.1);
}

body.day-mode .rd-contact h2 {
    color: #111827;
    text-shadow: none;
}

body.day-mode .rd-contact h2 span {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .rd-divider {
    background: #2563EB;
    box-shadow: none;
}

body.day-mode .rd-sub {
    color: #6B7280;
}

body.day-mode .rd-info-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: #E5E7EB;
    box-shadow: none;
}

body.day-mode .rd-info-card:hover {
    border-color: #60A5FA;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

body.day-mode .rd-icon {
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: none;
}

body.day-mode .rd-info-card .ilabel {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .rd-info-card .ival {
    color: #111827;
}

body.day-mode .rd-note {
    background: rgba(255, 255, 255, 0.85);
    border-color: #E5E7EB;
    color: #6B7280;
    box-shadow: none;
}

body.day-mode .rd-note span {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .rd-form {
    background: rgba(255, 255, 255, 0.85);
    border-color: #E5E7EB;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

body.day-mode .rd-group label {
    color: #2563EB;
    text-shadow: none;
}

body.day-mode .rd-group input,
body.day-mode .rd-group select,
body.day-mode .rd-group textarea {
    background: #F8FAFC;
    border-color: #E5E7EB;
    color: #111827;
}

body.day-mode .rd-group input:focus,
body.day-mode .rd-group select:focus,
body.day-mode .rd-group textarea:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

body.day-mode .rd-check label {
    color: #6B7280;
}

body.day-mode .rd-submit {
    border-color: #2563EB;
    color: #2563EB;
    box-shadow: none;
    text-shadow: none;
}

body.day-mode .rd-submit:hover {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

/* Mobile Menu */
body.day-mode .mobile-menu {
    background: rgba(248, 250, 252, 0.97);
}

body.day-mode .mobile-menu ul li {
    color: #374151;
}

body.day-mode .mobile-menu ul li:hover {
    color: #2563EB;
    text-shadow: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    nav {
        padding: 0 4%;
        height: 68px;
    }

    .nav-links,
    .nav-btns {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        width: 130px;
    }

    .hero {
        padding: 60px 5% 50px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.6rem);
    }

    .stats-row {
        gap: 14px;
    }

    .stat-item {
        min-width: 130px;
        padding: 16px 18px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hiw {
        padding: 50px 16px;
    }

    .hiw-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hiw-arrow {
        display: none;
    }

    .pricing-section {
        padding: 50px 5%;
    }

    .pricing-heading h1 {
        font-size: 2.2rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 340px;
    }

    .rd-contact {
        padding: 50px 16px;
    }

    .rd-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 36px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 600px) {

    nav {
        padding: 0 4%;
        height: 60px;
    }

    .logo img {
        width: 110px;
    }

    .hero {
        padding: 50px 4% 40px;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        line-height: 1.15;
    }

    .hero-para {
        font-size: 0.9rem;
        margin: 16px auto;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 24px 0 30px;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
        padding: 13px 20px;
        justify-content: center;
    }

    .stats-row {
        gap: 10px;
    }

    .stat-item {
        min-width: calc(50% - 5px);
        padding: 14px 10px;
        border-radius: 18px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-item>div:last-child {
        font-size: 0.75rem;
    }

    .hiw {
        padding: 50px 12px;
    }

    .hiw-top h2 {
        font-size: 1.6rem;
    }

    .hiw-steps {
        grid-template-columns: 1fr;
    }

    .hiw-card {
        padding: 22px 14px;
    }

    .pricing-section {
        padding: 50px 4%;
    }

    .pricing-heading h1 {
        font-size: 1.9rem;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
        padding: 28px 20px;
    }

    .pricing-card h2 {
        font-size: 1.6rem;
    }

    .pricing-card h3 {
        font-size: 2.4rem;
    }

    .rd-contact {
        padding: 50px 12px;
    }

    .rd-contact h2 {
        font-size: 1.7rem;
    }

    .rd-row {
        grid-template-columns: 1fr;
    }

    .rd-form {
        padding: 18px 14px;
    }

    .footer {
        margin-top: 40px;
        border-radius: 20px 20px 0 0;
    }

    .footer-container {
        padding: 40px 5% 28px;
        flex-direction: column;
        gap: 24px;
    }

    .footer-left {
        min-width: unset;
    }

    .footer-logo-img {
        width: 85px;
        height: 85px;
    }

    .footer-links {
        gap: 24px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 12px;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .stat-item {
        min-width: 100%;
    }

    .pricing-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        border-radius: 25px 25px 0 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        gap: 50px;
    }
}

/* ================= FLOATING TELEGRAM BUTTON ================= */
.float-tg {
    position: fixed;
    bottom: 28px;
    right: 26px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #006aaa);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    overflow: hidden;
    max-width: 200px;
    animation: floatPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both 1.2s;
}

@keyframes floatPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.float-tg:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 32px rgba(0, 136, 204, 0.55);
}

.float-tg-icon {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .float-tg {
        padding: 13px;
        border-radius: 50%;
        max-width: 56px;
    }

    .float-tg-label {
        display: none;
    }
}

.nav-links li a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 15px #00ffff;
}