 :root {
            --neon-blue: #00f0ff;
            --neon-red: #ff003c;
            --neon-gold: #ffd700;
            --void-dark: #050507;
            --panel-bg: rgba(10, 10, 15, 0.85);
            --border-glow: 0 0 10px rgba(0, 240, 255, 0.5);
        }
		
		  /* Apply the Inter font globally */
        body {
            font-family: 'Inter', sans-serif;
        }
        /* Custom styling for the alert box */
        .alert-box {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 1000;
            transition: opacity 0.3s ease-in-out;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--void-dark);
            color: #e0e0e0;
            overflow-x: hidden;
        }

        h1, h2, h3, .heading-font {
            font-family: 'Orbitron', sans-serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--neon-blue);
        }

        /* Tech Borders */
        .tech-border {
            position: relative;
            background: var(--panel-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            clip-path: polygon(
                0 0, 
                100% 0, 
                100% calc(100% - 20px), 
                calc(100% - 20px) 100%, 
                0 100%
            );
        }

        .tech-border::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 20px;
            height: 2px;
            background: var(--neon-blue);
            transform: rotate(45deg) translate(-5px, 8px);
        }

        /* Glowing Text */
        .glow-text-blue {
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
        }
        .glow-text-red {
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }

        /* Animations */
        @keyframes scanline {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        .hero-bg {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                        url('../images/bg1.png'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* Class Card Hover */
        .class-card {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .class-card:hover {
            transform: translateY(-5px);
            border-color: var(--neon-blue);
            box-shadow: var(--border-glow);
        }

        /* Navigation */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Modal Backdrop */
        .modal-backdrop {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        /* Stat Bar Animation */
        .stat-fill {
            transition: width 1s ease-out;
        }

        /* Particle Dust */
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
            animation: float-up 10s linear infinite;
        }
        @keyframes float-up {
            0% { transform: translateY(100vh); opacity: 0; }
            50% { opacity: 0.8; }
            100% { transform: translateY(-10vh); opacity: 0; }
        }
		
		  /* Register */
		.glow-title {
            text-shadow: 0 0 5px #b44, 0 0 10px #b44;
        }
        
        /* Custom style for the Cabal-inspired textured background (Subtle Runic Grid) */
        .textured-background {
            /* Base dark background color */
            background-color: #0F0F0F;
            /* Combine repeating diagonal gradients to create a subtle grid/runic effect */
            background-image: 
                /* Diagonal line set 1 */
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.03) 0px,
                    rgba(255, 255, 255, 0.03) 1px,
                    transparent 1px,
                    transparent 30px
                ),
                /* Diagonal line set 2 */
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.03) 0px,
                    rgba(255, 255, 255, 0.03) 1px,
                    transparent 1px,
                    transparent 30px
                );
            background-size: 30px 30px; /* Controls the density of the pattern */
        }
		
		/*BODY LINKS*/
body {
            font-family: 'Inter', sans-serif;
            background-color: #030712; /* Deep dark blue/black */
        }
        /* Custom class for the angular/glow effect on cards */
        .cyber-card {
            border: 1px solid transparent;
            border-image: linear-gradient(to right, #06b6d4, #10b981, transparent 80%) 1;
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
            transition: all 0.3s ease-in-out;
            border-radius: 0.5rem; /* rounded corners */
        }
        .cyber-card:hover {
            border-image: linear-gradient(to right, #06b6d4, #10b981, #06b6d4) 1;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.5), 0 0 5px rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        /* --- Custom Sidebar Styles (from user request) --- */
        .rightBodyLinks {
            position: fixed;
            top: 40%;
            right: 0;
            transform: translateY(-50%);
            z-index: 50; /* Ensure it stays above the main content */
        }

        .rightBodyLinks a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            background: black;
            color: orangered;
            text-transform: uppercase;
            font-family: "Philosopher", sans-serif;
            font-size: 10px;
            padding: 15px 0 15px 20px;
            margin: 5px 0;
            width: 200px;
            letter-spacing: 1.5px;
            box-shadow: 2px 2px 16px 0px rgba(21, 112, 248, 0.7);
            position: relative;
            transform: translateX(90%);
            transition: transform 0.5s ease-in-out;
            border-radius: 0.25rem 0 0 0.25rem; /* Round the left side */
        }

        .rightBodyLinks a .icon {
            width: 70px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #18397E;
            position: absolute;
            left: -50px;
            top: 0;
            /* Ensure icon content is visible */
        }

        .rightBodyLinks .icon svg { /* Targeting the Lucide SVG icon */
            width: 28px;
            height: 28px;
        }

        .rightBodyLinks a .description {
            display: block;
            font-size: 12px;
            color: white;
            text-align: center;
            margin-top: 5px;
        }

        .rightBodyLinks a:hover {
            transform: translateX(0);
        }

        .onlineBlock {
            width: 110px;
            height: 80px;
            text-align: center;
            font-size: 16px;
            color: #fff;
            letter-spacing: 1px;
            font-family: "Philosopher", sans-serif;
            padding-left: 4px;
            padding-top: 8px;
            position: relative;
            z-index: 2;
        }
        .onlineBlock span {
            display: block;
            font-size: 48px;
            color: #ffdda9;
            letter-spacing: 8px;
            padding-top: 3px;
            text-shadow: 0 0 20px rgba(255, 118, 18, 0.7);
        }
        .blue-light {
        width: 110px;
            height: 90px;
            top: 5px;
            left: 5;
            position: absolute;
            animation: 12s p-next linear infinite;
            opacity: 0.7;
        }
        .yellow-light {
        width: 110px;
            height: 90px;
            top: 5px;
            left: 5;
            position: absolute;
            animation: 12s p-prev linear infinite;
            opacity: 0.7;
        }
        @keyframes p-next {
            0% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(180deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        @keyframes p-prev {
            0% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(-180deg);
            }
            100% {
                transform: rotate(-360deg);
            }
        }
		/*Guild Ranking Home*/
		body {
            font-family: 'Inter', sans-serif;
            background-color: #0d1117; /* Dark charcoal background */
        }
        
        /* Custom scrollbar for the table container */
        .custom-scrollbar::-webkit-scrollbar {
            width: 8px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #1A202C; /* Track color */
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #00FFFF; /* Neon scrollbar */
            border-radius: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #38BDF8;
        }

        /* Specific header background color */
        .table-header-bg {
            background-color: #1E293B; /* Slightly lighter than panel */
        }
	@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
        
        /* Custom Styles for Glow and Bar */
        .status-card {
            font-family: 'Orbitron', sans-serif;
            background: #111827; /* Dark background */
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        }
        
        .procyon-text {
            text-shadow: 0 0 8px rgba(37, 99, 235, 0.7); /* Blue glow */
        }
        
        .capella-text {
            text-shadow: 0 0 8px rgba(168, 85, 247, 0.7); /* Purple glow */
        }

        /* Gradient for Procyon side */
        .procyon-bar {
            background: linear-gradient(to right, #1d4ed8, #2563eb);
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%); /* Tapered edge */
        }

        /* Gradient for Capella side, reversed */
        .capella-bar {
            background: linear-gradient(to left, #7e22ce, #a855f7);
            clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%); /* Tapered edge */
        }

        /* Ensure the two bars touch nicely in the center for the split look */
        .progress-container {
            border: 1px solid #374151; /* Subtle border */
        }

 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        
        /* Custom Styling for the Tech Theme */
        .tech-bg {
            background-color: #0d1117; /* Dark background */
        }
        .tech-border {
            border: 1px solid #1f2732; /* Subtle dark border */
            border-radius: 0.5rem;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.15); /* Subtle cyan glow */
            background-color: #161b22; /* Slightly lighter inner background */
        }
        .tech-button {
            /* Futuristic primary blue/cyan for action */
            background-image: linear-gradient(to right, #06b6d4, #3b82f6);
            transition: all 0.3s ease-in-out;
        }
        .tech-button:hover {
            opacity: 0.9;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.7); /* Stronger glow on hover */
            transform: translateY(-1px);
        }