        /* ComNaD CSS */
		/* Base Reset & Variables */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: #050510;
            color: #ffffff;
            font-family: Arial, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Sparse Starfield Background */
        .starfield {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            background-image: 
                radial-gradient(1px 1px at 10% 20%, #fff, transparent),
                radial-gradient(1.5px 1.5px at 30% 65%, #fff, transparent),
                radial-gradient(1px 1px at 50% 40%, #fff, transparent),
                radial-gradient(2px 2px at 75% 15%, #fff, transparent),
                radial-gradient(1px 1px at 90% 80%, #fff, transparent),
                radial-gradient(1.5px 1.5px at 20% 85%, #fff, transparent);
            background-size: 500px 500px;
        }

        /* Layout Container */
        .container {
            width: 100%;
            max-width: 2600px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Logo Configuration */
        .logo-container {
            width: 100%;
            max-width: 600px;
            height: auto;
            aspect-ratio: 600 / 124;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-fallback {
            font-family: "Times New Roman", Times, serif;
            font-size: clamp(2rem, 8vw, 5rem);
            font-weight: bold;
            letter-spacing: 2px;
            text-align: center;
        }
        .logo-fallback span:nth-child(1), .logo-fallback span:nth-child(4) { color: #ff3333; }
        .logo-fallback span:nth-child(2), .logo-fallback span:nth-child(5) { color: #ffffff; }
        .logo-fallback span:nth-child(3), .logo-fallback span:nth-child(6) { color: #3366ff; }

        /* Brushed Chrome Line */
        .chrome-line {
            width: 100vw;
            height: 10px;
            margin-top: 0.5em;
            background: linear-gradient(
                to bottom,
                #f0f0f0 0%,
                #bcbcbc 20%,
                #e8e8e8 40%,
                #999999 60%,
                #666666 80%,
                #dddddd 100%
            );
            box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.4);
        }

        /* Lightbox layout container setup */
.lightbox-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust this value to match your desired layout width */
    margin: 0 auto;
}

/* Viewport acts as the clipping boundary window */
.slider-viewport {
    width: 100%;
    overflow: hidden; /* Critical: Hides all slides not currently active */
    border-radius: 8px; /* Optional card styling aesthetics */
}

/* Slider Track handles structural animations */
#sliderTrack {
    display: flex;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
/* hide all the extra slides off-screen to the right while they are still downloading */
#sliderTrack .slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
}

/* A helper class used by JS to eliminate resizing visual artifacts */
.no-transition {
    transition: none !important;
}

/* Slide setup forcing strict 1:1 screen mapping layouts */
.slide {
    flex: 0 0 100%; /* Force every single slide to be exactly the viewport width */
    width: 100%;
    box-sizing: border-box;
}

/* Ensure images fill inside their designated slide bounding frames seamlessly */
.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Keeps image proportions clean without distortion */
}
/* Container layout for the pagination track */
.slider-dots {
    display: flex;
    justify-content: center; /* Forces the dots to center horizontally */
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%; /* Critical: ensures container isn't shrinking to the left */
    box-sizing: border-box;
}

/* Individual interactive dot buttons */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3) !important; /* Semi-transparent baseline */
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

/* Highlight style indicating active slide tracking position */
.dot.active {
    background-color: #ffffff !important; /* Forces solid white on active */
    transform: scale(1.25); /* Makes the active dot slightly larger */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
/* --- Basic Arrow Layout Styles --- */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
}
.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }
.arrow:hover { background: rgba(0, 0, 0, 0.8); }
				/* Typography */
        h1 {
            color: #b0e0e6; /* Powder Blue alternative variant to contrast stars */
            margin-top: 1.5rem;
			margin-bottom: 0rem;
			margin-left: auto;
			margin-right: auto;
            font-family: Arial, sans-serif;
            font-weight: bold;
            font-size: clamp(2.5rem, 6vw, 5rem);
            text-align: center;
            text-shadow: 0 0 10px rgba(176, 224, 230, 0.3);
			line-height: 1.1;
        }
		h2 {
		  /* Scales between 32px and 56px */
		  color: #b0e0e6;
		  font-size: clamp(1.5rem, 4.5vw, 3.5rem); 
		  line-height: 1.2;
		  margin-top: 0rem;
		  margin-bottom: 0.75rem;
		  margin-left: auto;
		  margin-right: auto;
		  text-align: center;
          text-shadow: 0 0 10px rgba(176, 224, 230, 0.3);
		}
		h3 {
		  /* Scales between 32px and 56px */
          color: #b0e0e6; /* Powder Blue alternative variant to contrast stars */
		  font-size: clamp(1rem, 3vw, 2.5rem); 
		  line-height: 1.2;
		  margin-bottom: 0.75rem;
		  margin-left: auto;
		  margin-right: auto;
		  text-align: center;
          text-shadow: 0 0 10px rgba(176, 224, 230, 0.3);
		}		

		p {
		  /* Scales between 16px and 19px — keeps it highly readable on all screens */
		  color: #b0e0e6;
		  font-size: clamp(1rem, 1.25vw, 1.2rem); 
		  line-height: 1.6; /* Adds breathing room between lines for reading comfort */
		  max-width: 65ch;   /* Prevents lines from getting too long on wide screens */
		  margin-bottom: 1.5rem;
		  margin-left: auto;
		  margin-right: auto;
		  text-align: center;
          text-shadow: 0 0 10px rgba(176, 224, 230, 0.3);
		}
		ul {
		  /* Scales between 16px and 19px — keeps it highly readable on all screens */
		  color: #b0e0e6;
		  font-size: clamp(1rem, 1.25vw, 1.2rem); 
		  line-height: 1.6; /* Adds breathing room between lines for reading comfort */
		  max-width: 65ch;   /* Prevents lines from getting too long on wide screens */
		  margin-bottom: 1.5rem;
		  margin-left: auto;
		  margin-right: auto;
		  text-align: center;
          text-shadow: 0 0 10px rgba(176, 224, 230, 0.3);
		  list-style-type: none;
		  padding: 0;
		  
		}
		a:link {color:#FFF}
		a:visited {color:#F0E9D6}
		a:hover {color:#F00}
		a:active {color:#FF0}

		img {
		  max-width: 100%;
		  height: auto;
		  float: none !important;
		  position: static !important;
		  display: block; /* Removes unwanted whitespace below the image */
		  margin: 0 auto; /* Centers the block-level image horizontally */
		}
        /* Main Content Box */
        .content-box {
            margin-top: 1em;
			margin-left: auto;
		    margin-right: auto;
            width: 100%;
            max-width: 1200px;
            height: auto;
			box-sizing: border-box;
            background-color: none;
            color: #b0e0e6; 
            padding: clamp(20px, 5vw, 60px);
            font-family: Arial, sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.5rem); /* Responsive fluid typography */
            line-height: 1.6;
            overflow-y: auto; /* automatically add a vertical scrollbar only if the content is too tall to fit inside its containe */
			justify-content: center;
			align-items: center;
			text-align: center; /* Centers the actual text lines */
			padding: 2rem;
        }

        /* Footer */
        footer {
            width: 100%;
            margin-top: 1rem;
            padding: clamp(20px, 5vw, 60px);
            text-align: center;
            font-family: Arial, sans-serif;
            font-size: 0.9rem;
            color: #888899;
            border-top: 1px solid #222233;
        }
