/* RÜYA YOLCUSU - PROFESYONEL CSS MİMARİSİ (TAM KOD) */
:root {
    --primary: #0a0a0f;
    --secondary: #00f2ff;
    --accent: #8a2be2;
    --text: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.02);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--primary);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

#dreamCanvas { position: fixed; top: 0; left: 0; z-index: -2; pointer-events: none; }
#noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: url('https://grainy-gradients.vercel.app/noise.svg'); opacity: 0.05; z-index: -1; pointer-events: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVIGATION */
.mega-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    background: rgba(10, 10, 15, 0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); z-index: 1000;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.main-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: 2px; }
.main-logo span { color: var(--secondary); text-shadow: 0 0 10px var(--secondary); }

.menu-items { display: flex; list-style: none; gap: 30px; }
.menu-items a { text-decoration: none; color: #888; transition: 0.3s; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.menu-items a:hover { color: var(--secondary); }

/* HERO SECTION */
.extreme-hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; }

.floating-badge {
    background: var(--glass); border: 1px solid var(--secondary);
    padding: 8px 20px; border-radius: 50px; display: inline-block;
    font-size: 0.7rem; color: var(--secondary); margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.main-title { font-family: 'Space Grotesk', sans-serif; font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(90deg, var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.sub-text { color: #888; max-width: 600px; margin: 0 auto 40px; }

/* AI TERMINAL */
.neural-section { padding: 100px 0; }

.terminal-container {
    background: rgba(10, 10, 15, 0.6); border: 1px solid var(--border);
    border-radius: 20px; backdrop-filter: blur(20px); overflow: hidden;
}

.terminal-header { padding: 15px 25px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.t-dots span { height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 5px; }

.terminal-body { padding: 40px; }
#aiText {
    width: 100%; height: 200px; background: transparent; border: none;
    color: var(--secondary); font-family: 'Courier New', monospace;
    font-size: 1.1rem; outline: none; resize: none;
}

.analyze-btn {
    width: 100%; padding: 20px; background: transparent; border: 1px solid var(--secondary);
    color: var(--secondary); font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; letter-spacing: 2px; cursor: pointer; transition: 0.4s;
}
.analyze-btn:hover { background: var(--secondary); color: #000; box-shadow: 0 0 30px var(--secondary); }

/* DICTIONARY CARDS */
.dictionary-grid-extreme { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

.extreme-card {
    background: var(--glass); border: 1px solid var(--border);
    padding: 30px; border-radius: 20px; transition: 0.4s;
}
.extreme-card:hover { border-color: var(--secondary); transform: translateY(-10px); background: rgba(0, 242, 255, 0.02); }

.card-category { font-size: 0.7rem; color: var(--secondary); text-transform: uppercase; margin-bottom: 10px; }
.extreme-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.extreme-card p { color: #888; font-size: 0.9rem; margin-bottom: 20px; }

.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 15px; }
.card-footer span { font-size: 0.8rem; color: #555; }
.read-link { text-decoration: none; color: var(--secondary); font-size: 0.8rem; font-weight: 700; }

.ai-output-box { margin-top: 30px; line-height: 1.8; }