/* Remove all default link styling */
a {
    text-decoration: none !important;
    color: inherit; /* Keeps the text from turning blue/purple after clicking */
}

/* Specific fix for the Logo to ensure no weird blue colors or underlines */
.split-logo, .split-logo:hover, .split-logo:visited {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

/* Ensure Nav buttons don't have underlines */
.nav-links a {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* --- 1. THE ULTIMATE RESET --- */
:root {
    --purple: #9d4edd;
    --dark: #050505;
    --glass: rgba(12, 12, 12, 0.9);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
}

ul, li {
    list-style: none !important;
    list-style-type: none !important;
    text-decoration: none !important;
}

/* --- 2. GLOBAL PAGE RULES --- */
html, body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    overflow-y: auto; 
    height: 100%;
    scrollbar-width: none;
}
body::-webkit-scrollbar { display: none; }

/* --- 3. REPAIRED HEADER --- */
header {
    height: 70px; position: fixed; top: 0; width: 100%;
    z-index: 9999; background: var(--glass);
    backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1400px; height: 100%; margin: 0 auto; padding: 0 25px;
    display: flex; justify-content: flex-end; align-items: center; position: relative;
}

.logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); }

.split-logo {
    display: flex; gap: 8px; font-size: 1.54rem; font-weight: 900;
}
.part-krng { color: #fff; transition: var(--transition); }
.part-3d { color: var(--purple); transition: var(--transition); }

.split-logo:hover .part-krng {
    color: var(--purple);
    text-shadow: 0 0 20px var(--purple);
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: #666; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.nav-menu .nav-links a:hover {
    color: #fff;
}

/* --- 4. CONTENT LAYOUT --- */
.about-container {
    padding: 140px 25px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.vision-hero { margin-bottom: 60px; }
.vision-hero h1 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    font-weight: 900; 
    margin-bottom: 20px; 
    letter-spacing: -2px; 
    line-height: 1.1;
}
.mission-statement { font-size: 1.2rem; color: #aaa; line-height: 1.6; }

/* --- 5. HINT BOXES --- */
.hints-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.hint-box {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.hint-box:hover { border-color: var(--purple); transform: translateY(-5px); }

.card-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(157, 78, 221, 0.1) 0%, transparent 60%);
    opacity: 0; transition: 0.3s; pointer-events: none;
}
.hint-box:hover .card-glow { opacity: 1; }

.hint-tag { color: var(--purple); font-weight: 900; font-size: 0.7rem; text-transform: uppercase; }
.hint-box h3 { margin: 10px 0; font-size: 1.4rem; }
.hint-box p { color: #888; font-size: 0.95rem; line-height: 1.5; }

/* --- 6. EXTENDED TEXT --- */
.extended-info h2 { font-size: 2rem; margin-bottom: 30px; border-left: 4px solid var(--purple); padding-left: 20px; }
.info-block p { color: #999; font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }

/* --- 7. MOBILE REPAIRS --- */
.menu-btn { display: none; background: none; border: none; cursor: pointer; z-index: 10000; position: absolute; left: 25px; }
.bar { display: block; width: 25px; height: 2px; background: #fff; margin: 6px 0; transition: 0.4s; }

@media (max-width: 900px) {
    .menu-btn { display: block; }
    .nav-links { display: none; }
    
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #000000c4; visibility: hidden; opacity: 0; transition: 1.5s;
        display: flex; align-items: center; justify-content: center; z-index: 9998;
    }
    
    .nav-menu.active { visibility: visible; opacity: 1; }
    .nav-menu .nav-links { display: flex; flex-direction: column; gap: 40px; }
    .nav-menu .nav-links a { font-size: 2.5rem; color: #ff00dd; }

    .hints-grid { grid-template-columns: 1fr; }
    .about-container { padding-top: 100px; }
}