/* 1. Genel Sayfa Ayarları ve Arka Plan */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background: radial-gradient(circle at center, #1e2030 0%, #050505 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
}

/* 2. Ana Kart (Glassmorphism) Yapısı */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

/* 3. Profil Işıltısı (Glow Efekti) */
.profile-glow {
    position: relative;
    z-index: 1;
}

.profile-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, #00f2fe, #4facfe, #7000ff);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

/* 4. "Şu Anki Durum" Kutusu (Görseldeki Koyu Kutu) */
.status-card {
    background: #1a1b26; /* Görseldeki koyu gri/lacivert ton */
    border-left: 4px solid #00ff00; /* Sol taraftaki yeşil çizgi */
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.status-card h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.status-card p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: #a9abaf;
    font-style: italic;
}

/* 5. AÇILIR LİSTE (Dropdown / Accordion) TASARIMI */
.tech-dropdown {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.tech-dropdown summary {
    list-style: none;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #00f2fe; /* Görseldeki Parlak Mavi */
    outline: none;
    user-select: none;
}

.tech-dropdown summary::after {
    content: '▼';
    font-size: 0.7rem;
    transition: 0.3s;
    opacity: 0.6;
}

.tech-dropdown[open] summary::after {
    transform: rotate(180deg);
}

/* 6. Liste İçindeki Link Kartları */
.tech-list {
    padding: 0 1rem 1rem 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.tech-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02) translateX(5px);
    border-color: rgba(0, 242, 254, 0.3);
}

.tech-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    min-width: 30px;
}

.tech-info {
    display: flex;
    flex-direction: column;
}

.tech-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.tech-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Özel Scrollbar */
.tech-list::-webkit-scrollbar {
    width: 4px;
}
.tech-list::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.2);
    border-radius: 10px;
}