@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 400; src: url('../fonts/orbitron-v35-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 700; src: url('../fonts/orbitron-v35-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 900; src: url('../fonts/orbitron-v35-latin-900.woff2') format('woff2'); }
@font-face {
  font-family: 'Courier New', monospace;
}

:root {
    --primary-color: #00ff41;
    --secondary-color: #03a9f4;
    --danger-color: #ff003c;
    --bg-dark: #0a0a0a;
    --text-main: #e0e0e0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px;
    padding-bottom: 60px;
    overflow-x: hidden;
}

.cyber-card {
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.logo-heartbeat {
    border-radius: 50%;
    border: 3px solid var(--danger-color);
    box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 0, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

.form-control {
    background-color: #1a1a1a !important;
    border: 1px solid #444;
    color: #fff !important;
}
.form-control:focus {
    background-color: #222 !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.text-neon { color: var(--primary-color); text-shadow: 0 0 5px rgba(0,255,65,0.5); }
.text-danger-neon { color: var(--danger-color); text-shadow: 0 0 5px rgba(255,0,60,0.5); }
.glitch {
    position: relative;
    color: var(--primary-color);
    font-weight: 900;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.glitch::before {
    left: 2px; text-shadow: -1px 0 #ff003c; clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px; text-shadow: -1px 0 #03a9f4; clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    20% { clip: rect(80px, 9999px, 90px, 0); }
    40% { clip: rect(10px, 9999px, 50px, 0); }
    60% { clip: rect(40px, 9999px, 20px, 0); }
    80% { clip: rect(70px, 9999px, 90px, 0); }
    100% { clip: rect(20px, 9999px, 60px, 0); }
}

.cyber-card {
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.cyber-card::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid; border-width: 0 40px 40px 0;
    border-color: transparent var(--primary-color) transparent transparent;
}
.cyber-card:hover {
    box-shadow: 0 0 30px var(--primary-color);
    transform: translateY(-5px);
}

.terminal-window {
    background: #000;
    border: 1px solid #333;
    border-top: 20px solid #333;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    height: 200px;
    overflow-y: hidden;
    font-size: 0.8rem;
    position: relative;
}
.terminal-window::before {
    content: 'root@maun-cyber:~# ./monitor_logs';
    position: absolute; top: -18px; left: 5px; color: #fff; font-size: 10px; font-family: sans-serif;
}

.btn-cyber-primary {
    background: var(--primary-color); color: #000; font-weight: bold;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}
.btn-cyber-primary:hover { background: #000; color: var(--primary-color); }

.btn-cyber-outline {
    background: transparent; color: var(--secondary-color); font-weight: bold;
    border: 1px solid var(--secondary-color);
}
.btn-cyber-outline:hover { box-shadow: 0 0 15px var(--secondary-color); background: rgba(3, 169, 244, 0.1); }

@keyframes neon-heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(0, 255, 65, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

.logo-alive {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
    animation: neon-heartbeat 2s infinite;
    vertical-align: middle;
}

@keyframes flash-alert {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--danger-color); }
    50% { opacity: 0.6; box-shadow: 0 0 0 transparent; }
}
.btn-flash {
    animation: flash-alert 1.5s infinite;
    border-color: var(--danger-color);
    color: var(--danger-color);
}
.btn-flash:hover {
    background: var(--danger-color);
    color: #000;
    opacity: 1; 
    animation: none;
}

@keyframes border-wave {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0); }
}
.btn-wave {
    animation: border-wave 2s infinite;
    background: rgba(0, 255, 65, 0.1);
}

.btn-info-cyber {
    border: 1px dashed var(--secondary-color);
    color: var(--secondary-color);
}
.btn-info-cyber:hover {
    background: var(--secondary-color);
    color: #000;
    border-style: solid;
}

.form-cyber {
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Share Tech Mono', monospace; /* Dijital yazı tipi */
    letter-spacing: 1px;
    padding: 15px;
    border-radius: 0;
    transition: 0.3s;
}

.form-cyber:focus {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    color: #fff;
    outline: none;
}

.form-cyber::placeholder {
    color: rgba(0, 255, 65, 0.4);
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
