        /* Custom Styles */
        body {
            background-color: #0a192f;
            color: #8892b0;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            color: #ccd6f6;
        }

        /* Glassmorphism */
        .glass {
            background: rgba(10, 25, 47, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .glass-card {
            background: rgba(17, 34, 64, 0.7);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .glass-card:hover {
            transform: translateY(-5px);
            background: rgba(23, 42, 69, 0.9);
            border-color: #64ffda;
            box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
        }

        /* Text Gradients */
        .text-gradient {
            background: linear-gradient(to right, #D4AF37, #f6e27a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-teal {
            background: linear-gradient(to right, #64ffda, #00b894);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Hide Scrollbar */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        /* Page Management */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
            opacity: 0;
            animation: fadeInPage 0.5s ease forwards;
        }
        
        @keyframes fadeInPage {
            to { opacity: 1; }
        }
        
        .page.active {
            display: block;
        }

        /* Custom Inputs */
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #64ffda;
            box-shadow: 0 0 0 1px #64ffda;
        }

        /* Loading Screen */
        #loader {
            position: fixed;
            inset: 0;
            background: #020c1b;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }
        @keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
    