  :root {
            --dark-bg: #121212;
            --dark-surface: #1E1E1E;
            --neon-blue: #00f0ff;
            --neon-purple: #7e00ff;
            --text-primary: #e0e0e0;
            --text-secondary: #b0b0b0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        /* Mobile Responsive Navigation */
        .menu-toggle {
            display: none;
            position: fixed;
            top: 15px;
            right: 15px;
            z-index: 1000;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }
        .menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--neon-blue);
            position: absolute;
            transition: all 0.3s ease;
        }
        .menu-toggle span:nth-child(1) { top: 0; }
        .menu-toggle span:nth-child(2) { top: 10px; }
        .menu-toggle span:nth-child(3) { top: 20px; }
        
        /* Header Styles */
header {
    background-color: var(--dark-surface);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    position: relative;
}

.logo {
    max-height: 45px; /* Default size for larger screens */
    display: block;
    margin: 0 auto 15px;
    filter: brightness(1.2) contrast(1.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments for Logo */
@media (max-width: 768px) {
    .logo {
        max-height: 35px; /* Smaller size for mobile devices */
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 30px; /* Even smaller size for very small devices */
    }
}
        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            transition: width 0.3s ease;
        }
        .nav a:hover::before {
            width: 100%;
        }
        .nav a:hover {
            color: var(--neon-blue);
        }

        /* Search Section */
        .search-section {
            text-align: center;
            padding: 40px 15px;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
        }
        .secondary-logo {
            max-height: 120px;
            margin: 0 auto 20px;
            display: block;
            filter: brightness(1.2) contrast(1.2);
        }
        .site-notice {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(0,240,255,0.5);
        }
        .search-form {
            display: flex;
            justify-content: center;
            gap: 10px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-input {
            flex-grow: 1;
            min-width: 250px;
            padding: 12px;
            background-color: var(--dark-surface);
            border: 2px solid var(--neon-blue);
            color: var(--text-primary);
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 15px rgba(0,240,255,0.5);
        }
        .btn {
            background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
			
        }
		
		 .btn:hover {
            transform: scale(1.05);
        }
	
.full-site-btn a {
    text-decoration: none; /* Remove underline */
    display: inline-block;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    color: white;
    border: none;
    padding: 12px 22px; /* Increased padding for a larger button */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold; /* Bold text */
    font-size: 1.1rem; /* Larger font size */
    text-transform: uppercase; /* Uppercase text for emphasis */
    letter-spacing: 1px; /* Slightly spaced letters */
    animation: pulse 2s infinite; /* Subtle pulse animation */
}

.full-site-btn a {
    text-decoration: none; /* Remove underline by default */
    display: inline-block;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    color: white;
    border: none;
    padding: 15px 30px; /* Increased padding for a larger button */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold; /* Bold text */
    font-size: 1.1rem; /* Larger font size */
    text-transform: uppercase; /* Uppercase text for emphasis */
    letter-spacing: 1px; /* Slightly spaced letters */
    animation: pulse 2s infinite; /* Subtle pulse animation */
}

.full-site-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4), /* Brighter shimmer */
        transparent
    );
    transition: all 0.6s;
}

.full-site-btn a:hover::before {
    left: 100%;
}

.full-site-btn a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8); /* Stronger glow effect */
    text-decoration: underline; /* Underline on hover */
    text-underline-offset: 5px; /* Space between text and underline */
    text-decoration-thickness: 2px; /* Thicker underline */
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}
       
/* Content Section */
.content {
    background-color: var(--dark-surface);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
}

.content h2,
.content h3,
.content h4 {
    color: var(--heading-color); /* Light gray for headings */
    margin-bottom: 20px;
}

.content p {
    color: var(--text-secondary);
    line-height: 1.8;
}
/* Footer Section */
#xfooter {
    background-color: var(--dark-surface);
    padding: 20px 0;
    margin-top: auto;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

#xfooter-about {
    background-color: var(--dark-bg);
    padding: 30px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-secondary);
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.3s ease;
                z-index: 999;
            }
            .nav.active {
                left: 0;
            }
            .nav a {
                font-size: 1.5rem;
                margin: 15px 0;
            }
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }