        :root {
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-color: #ffffff;
            --accent-line: rgba(255, 255, 255, 0.3);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            /* 
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); 
		*/
            
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            height: 100vh;
            overflow: hidden; /* Prevents scroll if content is minimal */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* The Main Glass Container */
        .glass-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 3rem 4rem;
            
            /* Glassmorphism Logic */
            background: var(--glass-bg);
            backdrop-filter: blur(10px); 
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        /* --- TOP SECTION --- */
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
	    border:0px solid lime ;
	    border:0px solid orange ;
	    width:100%;
        }

        /* Logo Area */
        .brand-identity {
	    border:0px solid aquamarine ;
	    vertical-align: middle;
        }

        .brand-name {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -1px;
            white-space: nowrap;
	    border:0px solid yellow ;
        }

        .brand-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4em; 
            margin-top: 5px;
            color: #ccc;
            text-align:right;
	    border:0px solid orange ;
        }

        /* Top Navigation Bar */
        .top-nav {
	    vertical-align:middle;
            margin-top: .18rem;
            display: flex;
            gap: 1rem;
	    width:100%;
            white-space: nowrap;
	    border:0px solid blue ;
        }

        .top-nav a {
            text-decoration: none;
            color: var(--text-color);
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            transition: opacity 0.3s ease;
        }

        .top-nav a:hover {
            opacity: 0.7;
        }

        /* Right Header / Crosshair Element */
        .page-indicator {
	    margin: 1% auto;
	    padding: 1% ;
            white-space: nowrap;
	    border:0px solid lime ;
	    margin-right:10% auto;
        }

        .current-page-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.65rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            z-index: 2;
        }

        /* CSS Only Crosshair Graphic */
        .crosshair-graphic {
            position: absolute;
            right: 125px; 
            width: 80px;
            height: 80px;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            pointer-events: none;
        }

        .crosshair-graphic::before,
        .crosshair-graphic::after {
            content: '';
            position: absolute;
            background-color: rgba(255,255,255,0.4);
        }

        /* Vertical Line */
        .crosshair-graphic::before {
            top: -20%;
            bottom: -20%;
            left: 50%;
            width: 1px;
            transform: translateX(-50%);
        }

        /* Horizontal Line */
        .crosshair-graphic::after {
            left: -20%;
            right: -20%;
            top: 50%;
            height: 1px;
            transform: translateY(-50%);
        }

        /* --- MIDDLE / CONTENT SECTION --- */
        .main-content {
            flex-grow: 1;
            /* Content would go here */
        }

        /* --- BOTTOM SECTION --- */
        .footer-section {
            width: 100%;
            height: 50px ;
            bottom:10% ;
        }

        .footer-separator {
            width: 100%;
            height: 1px;
            background-color: var(--accent-line);
            margin: 10px;
            opacity: 0.5;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            position: relative;
        }

        .copyright {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            opacity: 0.8;
            position: relative ;
	    margin:0px auto;
        }

        .bottom-nav {
            position: relative ;
            margin: 0px auto; 
            margin-right: 100px; 
            margin-bottom: 100px; 
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.8rem;
            bottom: 10% ;
        }

        .bottom-nav a {
            text-decoration: none;
            color: var(--text-color);
            text-transform: uppercase;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            transition: opacity 0.3s ease;
        }

        .bottom-nav a:hover {
            opacity: 0.7;
        }

	.brand-name a {
			text-decoration:none;
			color:white;
			}
        .brand-name a:hover {
            opacity: 0.8;
	    color: aquamarine ;
        }
