.ozgecmis-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.ozgecmis-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 2rem 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.name-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--border-color);
    display: inline-block;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bio-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.bio-text p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.highlight-text {
    font-weight: 700;
    color: var(--text-color);
    background: var(--highlight-bg);
    padding: 1.2rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--border-color);
    transition: all 0.3s ease;
}

/* WhatsApp Butonu */
@media (min-width: 769px) {
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        text-decoration: none;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid #25D366;
    }
    
    .whatsapp-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .whatsapp-icon svg {
        width: 100%;
        height: 100%;
        fill: white;
    }
    
    .whatsapp-button:hover {
        transform: scale(1.1);
        background: transparent;
        border: 2px solid #25D366;
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    }
    
    .whatsapp-button:hover .whatsapp-icon svg {
        fill: #25D366;
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        display: none !important;
    }
    .ozgecmis-title {
        font-size: 2rem;
    }
    .name-title {
        font-size: 1.6rem;
    }
    .bio-text {
        font-size: 0.95rem;
    }
}