 /* Hero Section Styles */
            .hero-section {
                background: linear-gradient(135deg, #0a0a0a 0%, #18181b 100%);
                padding: 3rem 2rem;
                position: relative;
                overflow: hidden;
                box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
            }

            /* Cosmic Background */
            .cosmic-background {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
                opacity: 0.5;
                z-index: 1;
            }

            /* Planets */
            .planets-container {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 2;
                overflow: hidden;
            }

            .planet {
                position: absolute;
                animation: floatPlanet 20s infinite ease-in-out;
            }

            .saturn {
                width: 120px;
                height: 80px;
                right: 12%;
                top: 78%;
                animation-duration: 25s;
                opacity: 0.9;
                transform: rotate(-15deg);
                mix-blend-mode: screen;
            }

            .mars {
                width: 50px;
                height: 50px;
                left: 18%;
                bottom: 28%;
                animation-duration: 20s;
                animation-delay: -5s;
                opacity: 0.9;
                mix-blend-mode: screen;
            }

            @keyframes floatPlanet {
                0%, 100% {
                    transform: translate(0, 0) rotate(0deg);
                }
                25% {
                    transform: translate(-10px, 10px) rotate(5deg);
                }
                50% {
                    transform: translate(0px, -10px) rotate(-5deg);
                }
                75% {
                    transform: translate(10px, 5px) rotate(3deg);
                }
            }

            .saturn svg,
            .mars svg {
                width: 100%;
                height: 100%;
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
            }

            /* Star Field */
            .star-field {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .stars, .twinkling, .clouds {
                position: absolute;
                display: block;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100%;
                height: 100%;
            }

            .stars {
                z-index: 0;
                background: #000 url('https://i.imgur.com/YKY28eT.png') repeat top center;
            }

            .twinkling {
                z-index: 1;
                background: transparent url('https://i.imgur.com/XYMF4ca.png') repeat top center;
                animation: move-twink-back 200s linear infinite;
            }

            /* CSS Variables for the new hero title design */
            :root {
                --pill: rgba(255, 255, 255, 0.95);
                --ink: #1a1a1a;
                --accent-blue: #3b82f6;
                --accent-pink: #ec4899;
            }

            /* New Hero Title Styling */
            .hero-content h1 {
                margin: 0 0 26px 0;
                font-weight: 700;
                letter-spacing: 0.5px;
                font-size: clamp(21px, 3.5vw, 48px);
                line-height: 1.02;
                text-shadow: 0 10px 30px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.15);
                color: #ffffff;
                position: relative;
                z-index: 2;
                font-family: 'Montserrat', sans-serif;
            }

            .hero-content h1 .amp {
                letter-spacing: 0.02em;
            }

            .hero-content .left {
                position: relative;
                align-self: center;
            }

            .hero-content .pill {
                display: inline-block;
                color: #ffffff;
                padding: 18px 26px;
                border-radius: 22px;
                font-weight: 900;
                letter-spacing: 0.06em;
                font-size: clamp(21px, 3.3vw, 46px);
                position: relative;
                z-index: 2;
                font-family: 'Montserrat', sans-serif;
                line-height: 1.2;
                overflow: hidden;
            }

            /* Shiny animation effect */
            .hero-content .pill::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, 
                    transparent 0%, 
                    rgba(255, 255, 255, 0.4) 50%, 
                    transparent 100%
                );
                animation: shine 3s ease-in-out infinite;
                z-index: 1;
            }

            @keyframes shine {
                0% {
                    left: -100%;
                }
                50% {
                    left: 100%;
                }
                100% {
                    left: 100%;
                }
            }

            .hero-content .pill .pill-signature {
                position: absolute;
                bottom: 6px;
                right: 12px;
                font-size: clamp(8px, 1.2vw, 14px);
                font-weight: 400;
                letter-spacing: 0.3px;
                opacity: 0.8;
                font-style: italic;
            }

            .hero-content .pill::after {
                /* colored border around the entire pill */
                content: "";
                position: absolute;
                top: -4px;
                left: -4px;
                right: -4px;
                bottom: -4px;
                border-radius: 26px;
                background: linear-gradient(90deg, #ff0000, #dc2626, #b91c1c);
                z-index: -1;
                filter: drop-shadow(0 8px 14px rgba(0,0,0,.45));
            }

            .hero-content .pill .badge {
                position: absolute;
                inset: -8px -14px -8px auto;
                width: 20px;
                border-radius: 24px;
                background: var(--accent-pink);
                filter: blur(14px);
                opacity: 0.65;
                content: "";
            }

            @keyframes move-twink-back {
                from {
                    background-position: 0 0;
                }
                to {
                    background-position: -10000px 5000px;
                }
            }

            @keyframes move-clouds-back {
                from {
                    background-position: 0 0;
                }
                to {
                    background-position: 10000px 0;
                }
            }

            /* Hero Section Splash Transition */
            .hero-splash-transition {
                width: 100%;
                height: 80px;
                overflow: hidden;
                line-height: 0;
                margin: 0;
                padding: 0;
                position: relative;
                background: #ffffff; /* White background outside waves */
            }

            .hero-splash-transition svg {
                position: relative;
                display: block;
                width: calc(100% + 1.3px);
                height: 80px;
                transform: rotateY(180deg);
                z-index: 10;
            }

            /* Nebula Effect */
            .nebula-container {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                overflow: hidden;
            }


            .nebula {
                position: absolute;
                border-radius: 50%;
                filter: blur(60px);
                opacity: 0.2;
                animation: nebula-float 20s infinite ease-in-out;
            }

            .nebula-1 {
                top: -20%;
                left: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle at center,
                    rgba(220, 38, 38, 0.3),
                    rgba(239, 68, 68, 0.1),
                    transparent 70%);
                animation-delay: -5s;
            }

            .nebula-2 {
                top: 30%;
                right: -20%;
                width: 600px;
                height: 600px;
                background: radial-gradient(circle at center,
                    rgba(185, 28, 28, 0.3),
                    rgba(220, 38, 38, 0.1),
                    transparent 70%);
                animation-delay: -10s;
            }

            .nebula-3 {
                bottom: -30%;
                left: 20%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle at center,
                    rgba(239, 68, 68, 0.3),
                    rgba(220, 38, 38, 0.1),
                    transparent 70%);
                animation-delay: -15s;
            }

            @keyframes nebula-float {
                0%, 100% {
                    transform: translate(0, 0) rotate(0deg);
                }
                25% {
                    transform: translate(5%, 5%) rotate(5deg);
                }
                50% {
                    transform: translate(0%, 10%) rotate(0deg);
                }
                75% {
                    transform: translate(-5%, 5%) rotate(-5deg);
                }
            }
            
            .hero-title {
                font-size: 2.5rem;
                font-weight: 700;
                background: linear-gradient(135deg, #1e293b, #475569);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
                color: #64748b;
                font-weight: 400;
                line-height: 1.6;
            }
                                                    
            /* Hero Search Box Styles */
                .hero-search-container {
                display: flex;
                justify-content: flex-start;
                width: 100%;
                max-width: 100%;
                margin: 0;
            }            .hero-search-widget {
                position: relative;
                width: 100%;
                max-width: 700px;
            }
            
            .search-input-container {
                position: relative;
                transition: all 0.3s ease;
                overflow: hidden;
				flex: 1;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 0.5rem;
            }
            
            .search-input-container:focus-within {
                border-color: #dc2626;
                box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1), 0 16px 48px rgba(0, 0, 0, 0.15);
                transform: translateY(-3px);
            }
                       
            .rotating-favicon {
                position: absolute;
                left: 24px;
                top: 50%;
                transform: translateY(-50%);
                width: 20px;
                height: 20px;
                border-radius: 4px;
                z-index: 2;
                pointer-events: none;
                opacity: 0.8;
                transition: opacity 0.3s ease, transform 0.3s ease;
            }
            
            .rotating-favicon:hover {
                opacity: 1;
                transform: translateY(-50%) scale(1.1);
            }
            
            .hero-search-input {
                width: 100%;
                padding: 1rem 3rem 1rem 3.5rem;
                border: none;
                outline: none;
                font-size: 1.25rem;
                font-weight: 500;
                line-height: 1.5;
				color: #f8fafc;
                background: transparent;
				
            }
            
            .hero-search-input::placeholder {
                color: #6b7280;
                font-weight: 400;
            }
            
            /* Hero Search Dropdown */
            .hero-search-widget .search-dropdown {
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(25px);
                border-radius: 0.5rem;
                box-shadow: 0 24px 70px rgb(0 0 0);
                max-height: 400px;
                overflow-y: auto;
                z-index: 1000;
				display: none;
				max-width: 100%;
            }
            
            .hero-search-widget .search-dropdown.show {
                display: block;
                animation: slideDownHero 0.3s ease;
            }
            
            @keyframes slideDownHero {
                from {
                    opacity: 0;
                    transform: translateY(-15px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            /* Responsive Design */
            @media (max-width: 768px) {
                .hero-section { padding: 2rem 1.5rem; }
                .hero-title { font-size: 2rem; }
                .hero-subtitle { font-size: 1.1rem; }
                
                /* Hero Search Mobile */
                .hero-search-container {
                    padding: 0 15px;
                }
                
                .hero-search-input {
                    font-size: 1.1rem;
                    padding: 18px 20px 18px 55px;
                }
                
                .search-input-container .search-icon {
                    left: 18px;
                    font-size: 1.3rem;
                }
            }
            
            @media (max-width: 480px) {
                .hero-search-input {
                    font-size: 1rem;
                    padding: 16px 18px 16px 50px;
                }
                
                .search-input-container .search-icon {
                    left: 16px;
                    font-size: 1.2rem;
                }
            }
                 


            .status-marquee-wrapper {
                width: 100vw;
                max-width: 100%;
                overflow: hidden;
                background: none;
                margin: 0 auto 0 auto;
                padding: 0;
                position: relative;
                z-index: 10;
            }
            .status-marquee {
                display: flex;
                gap: 32px;
                width: max-content;
                animation: marquee-scroll 18s linear infinite;
                align-items: stretch;
				padding: 3rem 0rem 3rem 0rem;
            }
            @keyframes marquee-scroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(-100%); }
            }
            .status-card {
                display: flex;
                align-items: center;
                min-width: 400px;
                max-width: 420px;
                background: #fff;
                height: 120px;
                position: relative;
                overflow: hidden;
                border-left: 12px solid #f3f4f6;
            }
            .status-card-img {
                height: 100px;
                width: auto;
                margin-right: 18px;
                margin-left: 8px;
                flex-shrink: 0;
                display: block;
            }
            .status-card-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                height: 100%;
            }
            .status-card-title {
                font-size: 1.45rem;
                font-weight: 700;
                margin-bottom: 0.25em;
                letter-spacing: -0.5px;
                line-height: 1.1;
            }
            .status-card-title span {
                font-weight: 900;
                margin-left: 0.2em;
            }
            .status-card-desc {
                font-size: 1.05rem;
                color: #444;
                font-weight: 400;
            }
            .status-card.status-down .status-card-title,
            .status-card.status-down .status-card-title span {
                color: #ef4444;
            }
            .status-card.status-up .status-card-title,
            .status-card.status-up .status-card-title span {
                color: #10b981;
            }
            .status-card.status-maint .status-card-title,
            .status-card.status-maint .status-card-title span {
                color: #0891b2;
            }
			.status-card.status-outage .status-card-outage,
            .status-card.status-outage .status-card-title span {
                color: #ffc107;
            }
			.status-card.status-recovering .status-card-recovering,
            .status-card.status-recovering .status-card-title span {
                color: #0dd693;
            }
            @media (max-width: 900px) {
                .status-card { min-width: 320px; max-width: 340px; height: 100px; }
                .status-card-img { height: 70px; }
                .status-card-title { font-size: 1.1rem; }
                .status-card-desc { font-size: 0.95rem; }
            }
            @media (max-width: 600px) {
                .status-marquee { gap: 16px; }
                .status-card { min-width: 220px; max-width: 240px; height: 70px; padding-right: 10px; }
                .status-card-img { height: 40px; margin-right: 8px; }
                .status-card-title { font-size: 0.95rem; }
                .status-card-desc { font-size: 0.7rem; }
            }
			
           .thisdown-feature-section {
                position: relative;
                overflow: hidden;
                padding: 2rem 0 !important;
            }
            .thisdown-dashboard-mock {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 8px 8px 8px 8px rgb(0 0 0 / 18%);
    padding: 0;
    max-width: 320px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
            }
            .dashboard-header {
                background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
                padding: 1rem;
                color: white;
            }
            .dashboard-logo {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .logo-icon {
                width: 24px;
                height: 24px;
                margin-right: 0.4rem;
            }
            .logo-text {
                font-size: 1.5rem;
                font-weight: 700;
            }
            .dashboard-stats {
                padding: 1rem;
                border-bottom: 1px solid #1c1c1c2e;
            }
            .stat-card {
                width: 100%;
            }
            .dashboard-stat-row {
             display: flex;
             align-items: center;
             padding: 0.1rem;
            }
            .dashboard-stat-row:last-child {
                border-bottom: none;
            }
            .stat-phrase {
                font-size: 0.8rem;
                font-weight: 300;
                color: #374151;
                line-height: 1.2;
            }
            .stat-phrase .stat-number-highlight {
                font-weight: 600;
            }
            .stat-phrase .stat-number-highlight.monitored {
                color: #000000;
            }
            .stat-phrase .stat-number-highlight.down {
                color: #dc2626;
            }
            .stat-phrase .stat-number-highlight.uptime {
                color: #16a34a;
            }
            .stat-phrase .stat-number-highlight.checks {
                color: #000000;
            }
            .stat-number {
                font-size: 1.1rem;
                font-weight: 800;
                line-height: 1;
            }
            .stat-label {
                font-size: 0.65rem;
                color: #6b7280;
                margin-top: 0.2rem;
            }
            .dashboard-monitor-list {
                padding: 1rem;
                max-height: 180px;
                overflow-y: auto;
            }
            .monitor-row {
                display: flex;
                align-items: center;
                padding: 0.2rem 0;
            }
            .monitor-row:last-child {
                border-bottom: none;
            }
            .monitor-favicon, .monitor-favicon-placeholder {
                width: 18px;
                height: 18px;
                border-radius: 4px;
                margin-right: 0.6rem;
                flex-shrink: 0;
            }
            .monitor-favicon-placeholder {
                background: #e5e7eb;
            }
            .monitor-name {
            flex: 1;
            font-weight: 300;
            color: #000000;
            font-size: 0.7rem;
            }
            .monitor-status {
             font-size: 0.7rem;
             font-weight: 400;
             padding: 0rem 0.2rem 0rem 0.2rem;
             border-radius: 4px;
            }
            .monitor-status.status-up {
                background: #10b981;
                color: #fff;
            }
            .monitor-status.status-down {
                background: #fee2e2;
                color: #991b1b;
            }
            .monitor-status.status-warn {
                background: #fef3c7;
                color: #92400e;
            }
            .dashboard-pulse {
                padding: 0.75rem 1rem;
                background: #f9fafb;
                display: flex;
                align-items: center;
                gap: 0.4rem;
                font-size: 0.7rem;
                color: #6b7280;
            }
            .pulse-dot {
                width: 6px;
                height: 6px;
                background: #10b981;
                border-radius: 50%;
                animation: pulse 2s infinite;
            }
            @keyframes pulse {
                0% { opacity: 1; transform: scale(1); }
                50% { opacity: 0.5; transform: scale(1.2); }
                100% { opacity: 1; transform: scale(1); }
            }
            
            /* SVG Rocket Animation Styles */
            .svg-rocket-animation {
                position: absolute;
                top: 50%;
                right: 5%;
                z-index: 1;
                transform: translateY(-50%);
                animation: rocketFloat 3s ease-in-out infinite;
            }
            
            .svg-rocket {
                width: 120px;
                height: 120px;
                filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
                animation: rocketTilt 4s ease-in-out infinite alternate;
            }
            
            @keyframes rocketFloat {
                0%, 100% { transform: translateY(-50%) translateX(0px) rotate(0deg); }
                50% { transform: translateY(-50%) translateX(-5px) rotate(3deg); }
            }
            
            @keyframes rocketTilt {
                0% { transform: rotate(-2deg); }
                100% { transform: rotate(2deg); }
            }
            
            @media (max-width: 991.98px) {
                .svg-rocket {
                    width: 100px;
                    height: 100px;
                }
            }
            
            @media (max-width: 767.98px) {
                .svg-rocket {
                    width: 80px;
                    height: 80px;
                }
            }
            
            @media (max-width: 575.98px) {
                .svg-rocket {
                    width: 60px;
                    height: 60px;
                }
            }
            .feature-content {
                position: relative;
                z-index: 2;
            }
            .thisdown-logo {
                display: flex;
                align-items: center;
                font-size: 1.5rem;
                font-weight: 800;
                color: #000000;
                letter-spacing: -0.5px;
            }
            .thisdown-logo i {
                font-size: 1.8rem;
                margin-right: 0.5rem;
                color: #000000;
            }
            .thisdown-logo .logo-text {
                background: linear-gradient(135deg, #000000, #1a1a1a);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 900;
            }
            .feature-badge {
                display: inline-flex;
                align-items: center;
                background: linear-gradient(135deg, #000000, #1a1a1a);
                color: white;
                padding: 0.35rem 0.75rem;
                border-radius: 16px;
                font-size: 0.75rem;
                font-weight: 600;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
                margin-bottom: 0.75rem;
            }
            .feature-main-title {
                font-size: 1.8rem;
                font-weight: 800;
                color: #1f2937;
                line-height: 1.2;
                letter-spacing: -0.5px;
                margin-bottom: 0.75rem;
            }
            .feature-main-desc {
                font-size: 0.95rem;
                color: #4b5563;
                line-height: 1.5;
                font-weight: 400;
                margin-bottom: 1rem;
            }
            .feature-highlights {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 1.25rem;
            }
            .highlight-item {
                display: flex;
                align-items: flex-start;
                gap: 0.75rem;
            }
            .highlight-icon {
                width: 36px;
                height: 36px;
                background: linear-gradient(135deg, #000000, #1a1a1a);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1rem;
                flex-shrink: 0;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
            }
            .highlight-content h4 {
                font-size: 0.95rem;
                font-weight: 700;
                color: #1f2937;
                margin-bottom: 0.2rem;
                line-height: 1.2;
            }
            .highlight-content p {
                font-size: 0.8rem;
                color: #6b7280;
                margin: 0;
                line-height: 1.4;
            }
            .feature-cta {
                display: flex;
                gap: 0.75rem;
                flex-wrap: wrap;
            }
            .btn-thisdown-primary {
                background: linear-gradient(135deg, #000000, #1a1a1a);
                color: white;
                padding: 0.6rem 1.5rem;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.85rem;
                box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .btn-thisdown-primary:hover {
                transform: translateY(-1px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
                color: white;
                text-decoration: none;
            }
            .btn-thisdown-secondary {
                background: transparent;
                color: #374151;
                padding: 0.6rem 1.5rem;
                border: 2px solid #d1d5db;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.85rem;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .btn-thisdown-secondary:hover {
                background: #f9fafb;
                border-color: #9ca3af;
                color: #1f2937;
                text-decoration: none;
                transform: translateY(-1px);
            }
            @media (max-width: 991.98px) {
                .feature-main-title { font-size: 1.5rem; }
                .thisdown-dashboard-mock { max-width: 280px; }
                .highlight-item { gap: 0.6rem; }
                .highlight-icon { width: 32px; height: 32px; font-size: 0.9rem; }
                .feature-highlights { gap: 0.8rem; }
            }
            @media (max-width: 767.98px) {
                .thisdown-feature-section { padding: 1.5rem 0 !important; }
                .feature-main-title { font-size: 1.3rem; }
                .thisdown-dashboard-mock { max-width: 100%; }
                .feature-cta { justify-content: center; }
                .btn-thisdown-primary, .btn-thisdown-secondary { 
                    padding: 0.7rem 1.25rem; 
                    min-width: 120px;
                    font-size: 0.8rem;
                }
            }
            @media (max-width: 575.98px) {
                .dashboard-stats { flex-direction: column; gap: 0.4rem; }
                .stat-card { display: flex; align-items: center; justify-content: space-between; }
                .feature-cta { flex-direction: column; align-items: stretch; }
                .btn-thisdown-primary, .btn-thisdown-secondary { width: 100%; }
                .feature-main-title { font-size: 1.2rem; }
            }		