
        :root {
            --bg-black: #080808;
            --electric-cyan: #00ffff;
            --neon-purple: #9400d3;
        }
	
		.magic  {
			
		color: var(--electric-cyan); 
		border: 1px solid var(--electric-cyan);
		padding: 7px 20px;
		border-radius: 5px;
		font-size: 0.8rem;
		text-transform: uppercase;
		font-weight: bold;"
		
		}
		
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-black);
            color: white;
            overflow: hidden;
        }

        .hero-bg {
            
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                        url('tcg_grade_bg.png'); 
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .header {
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 50px;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        .logo span {
            color: var(--electric-cyan);
            text-shadow: 0 0 15px var(--electric-cyan), 0 0 5px white;
        }
		.gradebold {
			
       
		color: black;
            text-shadow: 0 0 15px var(--electric-cyan), 0 0 5px white;
        }
		
	
	
		
        .glass-card {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 60px;
            border-radius: 15px;
            text-align: center;
            max-width: 550px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .glass-card h1 {
            color: #111;
            font-size: 2.5rem;
            margin-top: 0;
            font-weight: 800;
            text-shadow: none;
        }

        .glass-card p {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 400;
        }

       
        .btn-cyber {
            display: inline-block;
            background: linear-gradient(135deg, #001f3f, #004080);
            color: var(--electric-cyan);
            padding: 22px 50px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease-out;
            border: 2px solid rgba(0, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
            cursor: pointer;
        }
		
		
		.managegod		{
		style="margin-top: 25px;
		font-size: 0.85rem;
		color: #777;
		font-weight: 400;
		
		}
		
		
		
        .btn-cyber::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 30%;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg);
            transition: all 0.6s ease;
        }

        .btn-cyber:hover::after {
            left: 130%;
        }

        .btn-cyber:hover {
            background: linear-gradient(135deg, var(--electric-cyan), #00aaff);
            color: #000;
            text-shadow: none;
            box-shadow: 0 0 35px var(--electric-cyan), 0 0 15px var(--neon-purple);
            transform: translateY(-3px) scale(1.02);
        }

        footer {
            position: absolute;
            bottom: 30px;
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
            text-align: center;
            width: 100%;
            letter-spacing: 1px;
        }
    