  /* Light Grunge Print Textures */
        body {
            background-color: #CFCFCF;
            color: #090909;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 20 -9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            background-blend-mode: color-burn;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Broken Print / Ink Glitch */
        .ink-glitch {
            position: relative;
            display: inline-block;
            color: #090909;
            transform: skew(-1deg);
        }

        .ink-glitch::before, .ink-glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #CFCFCF;
            color: #141414;
            overflow: hidden;
            z-index: 1;
        }


.hero-marg {
	margin-top: -60px !important;
}

@media (max-width: 768px) {
	.hero-marg {
	margin-top: 0px !important;
}
}

/* Active OS Tab Styling */
.active-os {
    background-color: #090909 !important;
    color: #CFCFCF !important;
    box-shadow: 2px 2px 0px 0px #484848 !important;
    transform: translate(2px, 2px);
}

        .ink-glitch::before {
            left: 2px;
            text-shadow: 2px 0 #484848;
            clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
            animation: ink-slice-1 3s infinite linear alternate-reverse;
        }

        .ink-glitch::after {
            left: -2px;
            color: #090909;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
            animation: ink-slice-2 2.5s infinite linear alternate-reverse;
        }

        @keyframes ink-slice-1 {
            0% { clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%); transform: translateX(1px); }
            20% { clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%); transform: translateX(-1px); }
            40% { clip-path: polygon(0 15%, 100% 15%, 100% 20%, 0 20%); transform: translateX(2px); }
            60% { clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); transform: translateX(-2px); }
            100% { clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%); transform: translateX(0); }
        }

        @keyframes ink-slice-2 {
            0% { clip-path: polygon(0 70%, 100% 70%, 100% 75%, 0 75%); transform: translateX(-1px); }
            20% { clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%); transform: translateX(2px); }
            40% { clip-path: polygon(0 85%, 100% 85%, 100% 90%, 0 90%); transform: translateX(-2px); }
            100% { clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%); transform: translateX(1px); }
        }

        /* Solid Printed Cards */
        .print-card {
            background-color: #D6D6D6;
            border: 3px solid #090909;
            box-shadow: 6px 6px 0px 0px #090909;
            transition: all 0.2s ease-in-out;
        }
        
        /* Buttons */
        .btn-ink {
            background-color: #141414;
            color: #CFCFCF;
            border: 2px solid #090909;
            text-transform: uppercase;
            font-weight: 700;
            box-shadow: 4px 4px 0px 0px #484848;
            transition: all 0.1s ease-in-out;
        }
        .btn-ink:hover {
            background-color: #090909;
            box-shadow: 2px 2px 0px 0px #484848;
            transform: translate(2px, 2px);
        }
        

	@media (max-width: 768px) {

	.heading-h2 {
	align-items: flex-start !important;

}	




}

        .btn-outline {
            background-color: transparent;
            color: #090909;
            border: 3px solid #090909;
            font-weight: 700;
            box-shadow: 4px 4px 0px 0px #090909;
            transition: all 0.1s ease-in-out;
        }
        .btn-outline:hover {
            background-color: #090909;
            color: #CFCFCF;
            box-shadow: 2px 2px 0px 0px #090909;
            transform: translate(2px, 2px);
        }

        /* Animations & Status Blocks */
        @keyframes scanline {
            0% { top: -10%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { top: 110%; opacity: 0; }
        }
        .scanner-line {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #090909;
            box-shadow: 0 0 5px #090909;
            animation: scanline 2.5s infinite linear;
            z-index: 10;
        }

        @keyframes bar-bounce {
            0%, 100% { height: 10%; }
            50% { height: 90%; }
        }
        .graph-bg {
            background-image: linear-gradient(0deg, transparent 24%, #484848 25%, #484848 26%, transparent 27%, transparent 74%, #484848 75%, #484848 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, #484848 25%, #484848 26%, transparent 27%, transparent 74%, #484848 75%, #484848 76%, transparent 77%, transparent);
            background-size: 8px 8px;
            opacity: 0.3;
        }
        .graph-bar {
            width: 6px;
            background-color: #090909;
            display: inline-block;
            animation: bar-bounce 1s infinite alternate;
        }
        .graph-bar:nth-child(1) { animation-duration: 0.7s; animation-delay: 0.1s; }
        .graph-bar:nth-child(2) { animation-duration: 0.9s; animation-delay: 0.3s; }
        .graph-bar:nth-child(3) { animation-duration: 1.2s; animation-delay: 0.0s; }
        .graph-bar:nth-child(4) { animation-duration: 0.8s; animation-delay: 0.4s; }
        .graph-bar:nth-child(5) { animation-duration: 1.1s; animation-delay: 0.2s; }

        @keyframes blink-block {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0.1; }
        }
        .loading-block {
            width: 10px;
            height: 10px;
            background-color: #090909;
            display: inline-block;
            margin-right: 4px;
            animation: blink-block 1.2s infinite;
        }
        .loading-block:nth-child(2) { animation-delay: 0.4s; }
        .loading-block:nth-child(3) { animation-delay: 0.8s; }

        ::selection { background: #090909; color: #CFCFCF; }

/* CRT / TV Screen Effects */
@keyframes crt-flicker {
    0% { opacity: 0.95; }
    5% { opacity: 0.85; }
    10% { opacity: 0.95; }
    15% { opacity: 1; }
    50% { opacity: 0.95; }
    55% { opacity: 0.8; }
    60% { opacity: 1; }
    100% { opacity: 0.95; }
}

.tv-flicker {
    animation: crt-flicker 0.15s infinite;
    filter: contrast(1.1) saturate(1.2) sepia(0.2);
}

.crt-scanlines {
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 20;
}

/* Smooth Accordion Animation using CSS Grid */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}
.accordion-content > div {
    overflow: hidden;
}
.group.active .accordion-content {
    grid-template-rows: 1fr;
}


 /* Hide scrollbar for the mobile tabs but keep functionality */
    .hide-scrollbar::-webkit-scrollbar { display: none; }
    .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    
    /* Subtle glow for terminal text */
    .text-glow {
        text-shadow: 0 0 4px rgba(207, 207, 207, 0.4);
    }


