/* --- AI LAB SAYFASI STILLERI --- */

/* Hero */
.lab-hero {
    padding: 180px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1), transparent 60%);
}

.lab-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.lab-title {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lab-desc {
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
}

/* TERMINAL WINDOW (Hackermode) */
.terminal-window {
    width: 100%;
    max-width: 800px;
    background: #0f0f0f;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    overflow: hidden;
    margin-bottom: 50px;
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.window-title {
    flex-grow: 1;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.terminal-body {
    padding: 20px;
    color: #a29bfe; /* Hafif mor terminal yazısı */
    font-size: 14px;
    line-height: 1.6;
}

.terminal-body .prompt {
    color: #27c93f; /* Kullanıcı adı yeşil */
    margin-right: 10px;
}

.terminal-body .output {
    color: #ccc;
    display: block;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* HARDWARE SPECS GRID */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
}

.spec-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}

.spec-icon {
    font-size: 30px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.spec-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.spec-detail {
    font-size: 14px;
    color: var(--text-gray);
}

/* RESEARCH LIST (Satır Satır Projeler) */
.research-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.research-item {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border-left: 2px solid rgba(255,255,255,0.1);
    padding: 30px;
    transition: 0.3s;
}

.research-item:hover {
    border-left-color: var(--accent);
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.05) 0%, transparent 100%);
}

.res-left {
    flex: 1;
}

.res-id {
    display: block;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.res-left h3 {
    font-size: 22px;
    color: #fff;
}

.res-mid {
    flex: 2;
    padding: 0 40px;
}

.res-mid p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 10px;
}

.res-tags span {
    font-size: 11px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 5px;
    color: var(--accent);
}

.res-right {
    flex: 0.5;
    text-align: right;
}

.res-btn {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.res-btn:hover {
    color: var(--accent);
    margin-right: 5px;
}

/* Mobile Fixes for Research List */
@media (max-width: 900px) {
    .research-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .res-mid {
        padding: 0;
    }
    .res-right {
        text-align: left;
    }
    .lab-title {
        font-size: 40px;
    }
}