<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ============== MODERN SIDEBAR DESIGN ============== */

/* Container dÃ¼zenlemeleri */
.about-main-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    position: relative;
    min-height: calc(100vh - 160px);
}

/* Sidebar ana container */
.about-sidebar-wrapper {
    position: static;
    height: auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Scrollbar artÄ±k gerekli deÄŸil */

/* Sidebar iÃ§erik alanÄ± */
.about-sidebar {
    padding: 0;
    height: auto;
    display: block;
    overflow: visible;
}

/* Sidebar header */
.about-sidebar-header {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    padding: 1rem 1rem 1rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;circle cx="80" cy="20" r="15" fill="rgba(255,255,255,0.1)"/&gt;&lt;circle cx="20" cy="80" r="10" fill="rgba(255,255,255,0.05)"/&gt;&lt;/svg&gt;');
    z-index: 1;
}

.about-sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.3;
    white-space: nowrap;
}

/* Sidebar menu */
.about-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    overflow: visible;
}

.sidebar-item {
    margin: 0;
}

/* Sidebar links */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
    min-height: 36px;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(99, 102, 241, 0.1) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    width: 100%;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: transparent;
}

.sidebar-link i {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.sidebar-link span {
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Active state */
.sidebar-item.active .sidebar-link {
    color: var(--primary);
    border-left-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(99, 102, 241, 0.1) 100%);
    font-weight: 600;
}

/* Disabled links */
.sidebar-link-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.sidebar-link-disabled:hover::before {
    width: 0;
}

/* Badges */
.badge-preparing {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 50px;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* External link icon */
.sidebar-link [data-feather="external-link"] {
    width: 13px;
    height: 13px;
    margin-left: auto;
    opacity: 0.6;
    position: relative;
    z-index: 2;
}

/* Dropdown functionality */
.sidebar-item.has-dropdown .dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.sidebar-item.has-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.sidebar-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-item.has-dropdown.open .sidebar-dropdown {
    max-height: none;
    height: auto;
}

.dropdown-item {
    margin: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem 0.4rem 1.8rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    min-height: 32px;
}

.dropdown-link:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
    border-left-color: var(--primary);
}

.dropdown-link.active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    border-left-color: var(--primary);
    font-weight: 600;
}

.dropdown-link i {
    width: 11px;
    height: 11px;
}

/* CTA Section */
.about-sidebar-cta {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    overflow: visible;
    border-radius: 0 0 1rem 1rem;
}

.about-sidebar-cta .cta-content {
    text-align: center;
}

.about-sidebar-cta .cta-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin: 0 auto 0.75rem;
    display: block;
}

.about-sidebar-cta h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.about-sidebar-cta p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.about-sidebar-cta .button {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: white;
    border: none;
    font-weight: 600;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.about-sidebar-cta .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    background: linear-gradient(135deg, #3730a3 0%, #4f46e5 100%);
}

/* Content area */
.about-content-wrapper {
    min-height: calc(100vh - 80px);
    padding: 0;
}

/* ============== RESPONSIVE DESIGN ============== */

@media (max-width: 1024px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .about-sidebar-wrapper {
        position: static;
        max-height: none;
        order: -1;
    }
    
    .sidebar-toggle-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-main-container {
        padding: 0.5rem;
    }
} </pre></body></html>