/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #000;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

/* Arka Plan Videosu */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(40%);
}

/* Blur Efekti ve Ana Wrapper */
.main-wrapper {
    filter: blur(20px);
    transition: filter 1.5s ease;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.remove-blur {
    filter: blur(0px) !important;
}

/* Kart Tasarımı (Glassmorphism) */
.card {
    background: rgba(77, 23, 23, 0);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0);
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0,0,0,0.5);
}

.profile-header h1 {
    color: #ffffffab;
    font-size: 2.2rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linkler */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Yeni "highlight" - Projeler/Vizyon Alanı */
.highlight {
    background: linear-gradient(45deg, #1a1a1a, #000);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.highlight:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* SES KONTROL ÜNİTESİ (Görseldeki Gibi Düzeltildi) */
#audio-container {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

#audio-toggle {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8); /* Beyaz daire */
    border-radius: 50%;
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0;
}

#audio-toggle:hover {
    transform: scale(1.1);
    border-color: #fff;
}

#audio-icon {
    font-size: 16px;
    display: block;
}

#volume-control {
    width: 0;
    opacity: 0;
    margin-left: 0;
    transition: all 0.4s ease;
    accent-color: #fff;
    cursor: pointer;
}

#audio-container:hover #volume-control {
    width: 100px;
    opacity: 1;
    margin-left: 15px;
}

/* Footer Notu */
.footer-note {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    min-height: 15px;
}/* Arka Plan Videosu için Geçiş Efekti */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(40%);
    /* Mouse hareketi için yumuşak geçiş ekledik */
    transition: transform 0.2s ease-out; 
    pointer-events: none;
}

/* Takip Eden Kedi Tasarımı */
#cursor-cat {
    position: fixed;
    pointer-events: none; /* Mouse tıklamalarını engellemez */
    z-index: 9999;
    font-size: 24px;
    transition: transform 0.1s ease-out;
    user-select: none;
}
/* --- 3D EFFECT FIX --- */
.card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

/* Hover glow */
.card:hover {
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(255,255,255,0.08);
}

/* Mouse takip eden ışık */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%), 
        rgba(255,255,255,0.25), 
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}
/* Kartın 3D duruşu için */
.card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

