/* =================================================== */
/* ============= FINAL REDESIGN V6 =================== */
/* =================================================== */

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

:root {
    --primary-color: #03A9F4;
    --background-color: #012130;
    --surface-color: #023A54;
    --text-color: #B3E5FC;
    --text-color-light: #81D4FA;
    --text-heading-color: #E1F5FE;
    --border-color: #0288D1;
    --highlight-bg: #012E42;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    --border-radius-soft: 12px;
    --border-radius-pill: 99px;
}

html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-main); background-color: var(--background-color); color: var(--text-color); overflow-x: hidden; }
body.mobile-menu-open { overflow: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.btn { display: inline-block; text-decoration: none; font-family: var(--font-main); font-weight: 600; font-size: 1rem; padding: 0.9rem 2rem; border-radius: var(--border-radius-pill); transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; text-align: center; }
.btn-primary { background-color: var(--primary-color); color: var(--background-color); }
.btn-primary:hover { background-color: var(--text-color-light); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(3, 169, 244, 0.2); }
.btn-secondary { background-color: var(--surface-color); color: var(--text-heading-color); border: 2px solid var(--border-color); }
.btn-primary2 { background-color: var(--primary-color); color: var(--background-color); }
.btn-primary2:hover { background-color: var(--text-color-light); color: #000000}
.btn-secondary:hover { background-color: var(--highlight-bg); border-color: var(--primary-color); transform: translateY(-3px); }
.btn-full { display: block; width: 100%; box-sizing: border-box; padding: 1rem 2rem; border-radius: var(--border-radius-soft); background-color: var(--primary-color); color: var(--background-color); }

header { background-color: transparent; position: fixed; top: 0; width: 100%; z-index: 1000; transition: background-color 0.3s, top 0.3s; }
header.scrolled { background-color: rgba(1, 33, 48, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.header-container { width: 100%; padding: 0 2.5rem; box-sizing: border-box; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; max-width: 1200px; margin: 0 auto; }
.logo { font-weight: 700; font-size: 1.5rem; text-decoration: none; color: var(--text-heading-color); }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; }
.nav-links ol { padding: 0; margin: 0; list-style: none; display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--text-color); text-decoration: none; transition: color 0.3s ease; font-weight: 500; }
.nav-links a:hover { color: var(--primary-color); }
.nav-links .auth-link a, .nav-links .auth-link2 a { padding: .5rem 1rem; border-radius: var(--border-radius-pill); border: 1px solid var(--primary-color); color: var(--primary-color); transition: all .3s; font-family: var(--font-mono); font-weight: 600; }
.nav-links .auth-link a { background: transparent; }
.nav-links .auth-link2 a { background: var(--primary-color); color: var(--background-color); }
.nav-links .auth-link a:hover, .nav-links .auth-link2 a:hover { background: var(--text-color-light); border-color: var(--text-color-light); color: var(--background-color); }

.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 1020; color: var(--primary-color); padding: 0; }
.mobile-nav-toggle svg { width: 32px; height: 32px; }
.mobile-nav-toggle .icon-close, .mobile-nav-toggle.is-active .icon-open { display: none; }
.mobile-nav-toggle .icon-open, .mobile-nav-toggle.is-active .icon-close { display: block; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: clamp(250px, 75vw, 400px); height: 100%; background-color: var(--surface-color); z-index: 1001; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1); box-shadow: -10px 0 30px -15px rgba(2, 12, 27, 0.7); }
.mobile-menu.is-active { right: 0; }
#mobile-menu-close-btn { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; padding: 0; cursor: pointer; color: var(--text-color-light); transition: color 0.3s ease; z-index: 1002; }
#mobile-menu-close-btn:hover { color: var(--primary-color); }
.mobile-menu ol { padding: 0; margin: 0; list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 2rem; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--text-color); text-decoration: none; font-family: var(--font-mono); }
.mobile-menu .nav-actions { display: flex; flex-direction: column; gap: 1.5rem; width: 80%; margin-top: 1.5rem; }

.hero-section { background-color: var(--background-color); background-image: linear-gradient(to bottom, #012130, #000911); height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 5rem; box-sizing: border-box; }
.hero-container { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100%; }
.hero-content-wrapper { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; z-index: 10; flex-grow: 1; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; z-index: 12; position: relative; }
.hero-content .hero-intro-text { font-family: var(--font-mono); color: var(--text-color-light); margin-bottom: 0.5rem; font-size: 1.1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.hero-content h1 { font-weight: 700; font-family: var(--font-mono); font-size: clamp(4rem, 12vw, 7rem); line-height: 1; color: var(--primary-color); margin: 0 0 1.5rem 0; letter-spacing: 2px; text-shadow: 0 0 25px rgba(3, 169, 244, 0.6); }
.hero-content .hero-subtitle { font-size: 1.2rem; line-height: 1.6; color: var(--text-heading-color); max-width: 450px; margin: 0 auto 2.5rem auto; text-shadow: 0 2px 10px rgba(0,0,0,0.8); font-weight: 500;}
.hero-actions .btn { padding: 1rem 3rem; font-size: 1.1rem; }

@keyframes move-stars { from { background-position: 0 0; } to { background-position: 0 -10000px; } }
#star-field { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.stars-1, .stars-2, .stars-3 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-repeat: repeat; background-position: center; }
.stars-1 { background-image: radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)), radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)), radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0,0,0,0)), radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)); background-size: 200px 200px; animation: move-stars 200s linear infinite; }
.stars-2 { background-image: radial-gradient(1.5px 1.5px at 10px 90px, #fff, rgba(0,0,0,0)), radial-gradient(2px 2px at 130px 120px, #fff, rgba(0,0,0,0)); background-size: 250px 250px; animation: move-stars 150s linear infinite; }
.stars-3 { background-image: radial-gradient(2px 2px at 10px 200px, #fff, rgba(0,0,0,0)), radial-gradient(2.5px 2.5px at 150px 80px, #fff, rgba(0,0,0,0)); background-size: 300px 300px; animation: move-stars 100s linear infinite; }

/* UPDATED ANIMATIONS FOR FLOATING PLANET */
@keyframes drift-animation {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-40vw, 15vh) scale(0.9); }
    50% { transform: translate(0, -20vh) scale(1.1); }
    75% { transform: translate(40vw, 10vh) scale(1); }
    100% { transform: translate(0, 0); }
}

@keyframes ring-rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* UPDATED PLANET STYLES */
.orbit-path {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 80px;
    height: 80px;
    z-index: 5;
    animation: drift-animation 45s alternate infinite ease-in-out;
}

.orbiting-planet {
    position: relative;
    width: 100%;
    height: 100%;
    animation: ring-rotation 20s linear infinite;
}

.orbiting-planet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #3a3350;
    border-radius: 50%;
    box-shadow: inset -15px -10px 20px rgba(0,0,0,0.3);
}

.orbiting-planet::after {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    left: -40%;
    top: -40%;
    border: 4px solid rgba(179, 229, 252, 0.8);
    border-radius: 50%;
    transform: rotate(120deg);
    border-left-color: transparent;
    border-right-color: transparent;
}

/* MOON AND FLAG STYLES */
.hero-moon-base { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 500px; height: 250px; background-color: #E0E0E0; background-image: radial-gradient(circle at 30% 60%, #c8c8c8 15px, transparent 15.5px), radial-gradient(circle at 65% 140%, #bdbdbd 25px, transparent 25.5px), radial-gradient(circle at 70% 50%, #d1d1d1 12px, transparent 12.5px); border-top-left-radius: 250px; border-top-right-radius: 250px; z-index: 11; box-shadow: inset 0px 20px 40px rgba(0,0,0,0.2); }



.content-section { padding: 100px 0; background-color: #000911; position: relative; z-index: 20; }
.section-heading, .section-subheading { text-align: center; }
.section-heading { font-size: clamp(28px, 5vw, 42px); color: var(--text-heading-color); font-weight: 700; margin-bottom: 1rem; }
.section-subheading { color: var(--text-color-light); max-width: 550px; margin: 0 auto 4rem auto; font-size: 1.1rem; line-height: 1.6; }
.claim-container { background-color: var(--surface-color); border-radius: var(--border-radius-soft); padding: 3rem; text-align: center; }
.claim-container h2 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--text-heading-color); margin-top: 0; margin-bottom: 1rem; }
.claim-container p { color: var(--text-color-light); max-width: 500px; margin: 0 auto 2rem auto; }
.claim-form { display: flex; justify-content: center; align-items: stretch; max-width: 500px; margin: 0 auto; border: 2px solid var(--border-color); border-radius: var(--border-radius-pill); background-color: var(--background-color); overflow: hidden; }
.claim-form .prefix { padding: 0 1rem; display: flex; align-items: center; color: var(--text-color-light); font-family: var(--font-mono); }
.claim-form input { flex-grow: 1; border: none; background: transparent; padding: 1rem 0; font-size: 1rem; color: var(--text-color); outline: none; }
.claim-form button { border-radius: 0; font-size: 0.9rem; padding: 0 2rem; background-color: var(--primary-color); color: var(--background-color); border: none; cursor: pointer; transition: background-color .3s; }
.claim-form button:hover { background-color: var(--text-color-light); }
.your-url-display { background-color: var(--background-color); border: 1px solid var(--border-color); border-radius: var(--border-radius-soft); padding: 1rem; margin: 0 auto 2rem auto; max-width: 500px; }
.your-url-display a { font-family: var(--font-mono); font-size: 1.1rem; color: var(--primary-color); text-decoration: none; word-break: break-all; }
.your-url-display a:hover { text-decoration: underline; }
.active-dot { height: 10px; width: 10px; background-color: #34D399; border-radius: 50%; display: inline-block; margin-right: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background-color: var(--surface-color); padding: 2.5rem 2rem; border-radius: var(--border-radius-soft); transition: all 0.3s ease; border: 1px solid transparent; text-align: center; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.feature-icon { color: var(--primary-color); margin-bottom: 1.5rem; }
.feature-icon svg { width: 48px; height: 48px; }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-heading-color); }
.feature-card p { color: var(--text-color-light); line-height: 1.6; font-size: 0.95rem; }

.pricing-toggle-wrapper { display: flex; justify-content: center; margin-bottom: 4rem; }
.pricing-toggle { display: flex; gap: 0.5rem; background-color: var(--surface-color); padding: 0.5rem; border-radius: var(--border-radius-pill); border: 1px solid var(--border-color); }
.pricing-toggle .toggle-btn { background: transparent; border: none; color: var(--text-color-light); padding: 0.5rem 1.5rem; border-radius: var(--border-radius-pill); cursor: pointer; font-weight: 500; transition: all 0.3s ease; }
.pricing-toggle .toggle-btn.active { background-color: var(--primary-color); color: var(--background-color); }
.pricing-views-container { overflow: hidden; }
.pricing-slider { display: flex; width: 200%; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.pricing-view { width: 50%; flex-shrink: 0; box-sizing: border-box; padding: 0 1rem; }
.pricing-views-container.show-compare .pricing-slider { transform: translateX(-50%); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: stretch; }
.pricing-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: var(--border-radius-soft); padding: 2.5rem; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.recommended { border-color: var(--primary-color); transform: scale(1.05); box-shadow: 0 20px 40px rgba(3, 169, 244, 0.2); }
.pricing-card-header { text-align: center; margin-bottom: 2rem; }
.pricing-card-header h3 { font-size: 1.25rem; font-weight: 600; color: var(--primary-color); margin: 0 0 0.5rem 0; }
.pricing-card-header .price { font-size: 3rem; font-weight: 700; color: var(--text-heading-color); }
.pricing-card-header .price .period { font-size: 1rem; font-weight: 400; color: var(--text-color-light); }
.pricing-card-body { margin-bottom: 2rem; flex-grow: 1; }
.pricing-card-body ul { list-style: none; padding: 0; margin: 0; }
.pricing-card-body li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: var(--text-color); }
.pricing-card-body li svg { color: var(--primary-color); width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.pricing-card-footer { margin-top: auto; padding-top: 1rem; }

.comparison-table { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 8px; font-size: 0.95rem; min-width: 600px; overflow: hidden; }
.comparison-header, .comparison-row { display: grid; grid-template-columns: 3fr 1fr 1fr 1fr; gap: 1rem; padding: 1.25rem 1.5rem; align-items: center; }
.comparison-row:not(:last-child) { border-bottom: 1px solid var(--border-color); }
.comparison-header { color: var(--text-heading-color); font-weight: 600; }
.comparison-header .plan-cell { font-size: 1.1rem; }
.feature-cell { text-align: left; color: var(--text-color); font-weight: 500; }
.plan-cell { text-align: center; }
.plan-cell .icon-check { color: var(--primary-color); }
.plan-cell .icon-cross { color: var(--text-color-light); }
.plan-cell svg { width: 24px; height: 24px; }
.comparison-header .plan-cell:nth-child(4), .comparison-row .plan-cell:nth-child(4) { background-color: var(--highlight-bg); }
.comparison-header .plan-cell:nth-child(4) { border-top-right-radius: 8px; }
.comparison-row:last-child .plan-cell:nth-child(4) { border-bottom-right-radius: 8px; }

.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item { background-color: var(--surface-color); border-radius: var(--border-radius-soft); margin-bottom: 1rem; overflow: hidden; border: 1px solid var(--border-color); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.5rem; font-size: 1.1rem; font-weight: 600; color: var(--text-heading-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.faq-question:hover { color: var(--primary-color); }
.faq-question .arrow { transition: transform 0.3s ease; }
.faq-item.active .arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; padding: 0 1.5rem; }
.faq-answer p { color: var(--text-color-light); line-height: 1.6; margin: 0; padding-bottom: 1.5rem; }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; }
.site-footer { background-color: #000911; padding: 4rem 0 2rem 0; font-size: 0.9rem; text-align: center; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; text-align: left; }
.footer-logo { font-weight: 700; font-size: 1.5rem; text-decoration: none; color: var(--text-heading-color); display: block; margin-bottom: 1rem; }
.footer-logo span { color: var(--primary-color); }
.footer-about p { line-height: 1.6; color: var(--text-color-light); margin: 0; }
.footer-links h5, .footer-social h5 { font-size: 1.1rem; font-weight: 600; color: var(--text-heading-color); margin: 0 0 1rem 0; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li:not(:last-child) { margin-bottom: 0.75rem; }
.footer-links a { text-decoration: none; color: var(--text-color-light); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary-color); }
.footer-social-icons { display: flex; gap: 1rem; justify-content: flex-start; }
.footer-social-icons a { color: var(--text-color-light); transition: color 0.3s ease, transform 0.3s ease; }
.footer-social-icons a:hover { color: var(--primary-color); transform: translateY(-2px); }
.footer-social-icons svg { width: 24px; height: 24px; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center; color: var(--text-color-light); font-family: var(--font-mono); font-size: 0.8rem; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
#back-to-top-btn, #chat-widget-container { position: fixed; bottom: 2rem; z-index: 1000; }
#back-to-top-btn { left: 2rem; width: 50px; height: 50px; background-color: var(--primary-color); color: var(--background-color); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity 0.3s, visibility 0.3s, transform 0.3s; }
#back-to-top-btn.visible { opacity: 0.7; visibility: visible; transform: translateY(0); }
#back-to-top-btn:hover { opacity: 1; }
#back-to-top-btn svg { width: 24px; height: 24px; }
#chat-widget-container { right: 2rem; }
#chat-toggle-btn { width: 60px; height: 60px; background-color: white; color: var(--background-color); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4); transition: transform 0.3s ease, background-color 0.3s ease; animation: pulse-animation 2s infinite; }
#chat-toggle-btn:hover { transform: scale(1.1); background-color: var(--text-color-light); }
#chat-toggle-btn .icon-close, #chat-widget-container.active #chat-toggle-btn .icon-open { display: none; }
#chat-toggle-btn .icon-open, #chat-widget-container.active #chat-toggle-btn .icon-close { display: block; }
#chat-toggle-btn .icon-open { width: 55px; height: 55px; }
#chat-widget-container.active #chat-toggle-btn { animation: none; }
#chat-window { position: absolute; bottom: calc(100% + 1rem); right: 0; width: 350px; max-width: calc(100vw - 2rem); background-color: var(--surface-color); border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); overflow: hidden; display: flex; flex-direction: column; opacity: 0; transform: translateY(20px); visibility: hidden; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; }
#chat-widget-container.active #chat-window { opacity: 1; transform: translateY(0); visibility: visible; }
.chat-header { background-color: var(--highlight-bg); padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-color); }
.chat-header h3 { margin: 0; color: var(--text-heading-color); font-weight: 600; }
.chat-header p { margin: 0.25rem 0 0; color: var(--text-color-light); font-size: 0.85rem; }
.chatbot-name { color: var(--primary-color); font-weight: 700; }
.chat-messages { flex-grow: 1; padding: 1.25rem; overflow-y: auto; max-height: 300px; display: flex; flex-direction: column; gap: 1rem; }
.chat-message { padding: 0.75rem 1rem; border-radius: 10px; max-width: 85%; line-height: 1.5; }
.chat-message.bot { background-color: var(--highlight-bg); color: var(--text-color); align-self: flex-start; border-bottom-left-radius: 2px; }
.chat-message.user { background-color: var(--primary-color); color: var(--background-color); align-self: flex-end; border-bottom-right-radius: 2px; font-weight: 500; }
.typing-indicator { display: flex; gap: 4px; align-items: center; }
.typing-indicator span { width: 8px; height: 8px; background-color: var(--text-color-light); border-radius: 50%; animation: bounce 1.4s infinite ease-in-out both; }
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1.0); } }
@keyframes pulse-animation { 0% { box-shadow: 0 0 0 0 rgba(3, 169, 244, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(3, 169, 244, 0); } 100% { box-shadow: 0 0 0 0 rgba(3, 169, 244, 0); } }
.chat-questions { padding: 1rem 1.25rem; border-top: 1px solid var(--border-color); display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chat-question-btn { background-color: transparent; border: 1px solid var(--border-color); color: var(--text-color-light); padding: 0.5rem 1rem; border-radius: 99px; cursor: pointer; font-size: 0.85rem; transition: all 0.2s ease; }
.chat-question-btn:hover { background-color: var(--highlight-bg); border-color: var(--primary-color); color: var(--primary-color); }
.chat-question-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Custom Scrollbar for Chat */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}
.chat-messages::-webkit-scrollbar-track {
    background: var(--surface-color);
    border-radius: 10px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--surface-color);
}
.chat-messages::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-color-light);
}

/* Chatbot Link Styles */
.chat-message.bot a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(3, 169, 244, 0.5);
    transition: all 0.3s ease;
}

.chat-message.bot a:hover {
    color: var(--text-color-light);
    text-decoration-color: var(--text-color-light);
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .mobile-nav-toggle { display: block; }
    .header-container { padding: 0 1.5rem; }
    .orbit-path { width: 60px; height: 60px; }
    .hero-moon-base { width: 400px; height: 200px; bottom: 0; border-top-left-radius: 200px; border-top-right-radius: 200px; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 80vh; align-items: center; }
    .hero-content-wrapper { transform: translateY(-5%); }
    .hero-content h1 { font-size: clamp(3rem, 15vw, 4rem); }
    
    .claim-container {
        padding: 2rem 1.5rem;
    }
    .claim-form { 
        flex-direction: column; 
        background: transparent; 
        border: none; 
        gap: 1rem; 
        border-radius: 0; 
        overflow: visible; 
        width: 100%;
    }
    .claim-form .prefix { 
        display: none; 
    }
    .claim-form input { 
        background: var(--surface-color); 
        border: 1px solid var(--border-color); 
        border-radius: var(--border-radius-soft); 
        padding: 1rem; 
        text-align: center; 
        width: 100%; 
        box-sizing: border-box;
    }
    .claim-form button { 
        width: 100%; 
        border-radius: var(--border-radius-soft);
        box-sizing: border-box;
        padding: 1rem;
        font-size: 1rem;
    }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social-icons { justify-content: center; }
    .pricing-slider { transform: none !important; }
    .pricing-view { width: 100%; padding: 0; }
    #compare-view { display: none; }
    .pricing-views-container.show-compare #plans-view { display: none; }
    .pricing-views-container.show-compare #compare-view { display: block; }

    .orbit-path { display: none; }
    .hero-moon-base { display: none !important; }
}

@media (max-width: 480px) {
    #chat-window { width: calc(100vw - 2rem); bottom: calc(100% + 0.75rem); right: -1rem; }
}
