/* --- 1. CORE VARIABLES --- */
:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.3);
    
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    
    /* Marka Renkleri: Güven (Lacivert) ve Yaratıcılık (Elektrik Mor) */
    --brand-primary: #4f46e5; 
    --brand-secondary: #9333ea;
    --brand-accent: #06b6d4;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif; /* Başlıklar için şık font */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-image: radial-gradient(circle at top center, #1a1a2e 0%, var(--bg-color) 40%);
    overflow-x: hidden;
}

/* --- 2. LAYOUT GRID --- */
.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto); 
    gap: 16px;
    overflow-x: hidden;
}

/* Desktop: mobile-slider normal grid gibi davranır */
.mobile-slider {
    display: contents; /* Grid child'ları direkt container'a katılır */
}

/* --- 3. TOP BAR (HEADER) --- */
.header-bar {
    grid-column: span 4;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 10px; margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--brand-primary); }

/* Typing Text Effect */
.typing-logo {
    color: var(--brand-primary);
    position: relative;
    display: inline;
    white-space: nowrap;
    border-right: 2px solid var(--brand-primary);
    padding-right: 3px;
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--brand-primary); }
}

.header-info { display: flex; gap: 20px; align-items: center; font-size: 0.9rem; }
.header-link { 
    color: var(--text-muted); text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.header-link:hover { color: #fff; }
.icon-linkedin { width: 18px; height: 18px; fill: currentColor; }

/* --- 4. CARD STYLES & SPOTLIGHT --- */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.3s ease;
}

/* Spotlight Effect */
.card::before {
    content: ""; position: absolute; height: 100%; width: 100%; top: 0; left: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 2; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.card:hover::before { opacity: 1; }

.card-content { padding: 30px; position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; }

/* --- 5. GRID UTILS --- */
.col-span-2 { grid-column: span 2; }
.col-span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

/* --- 6. TYPOGRAPHY & ELEMENTS --- */
h1 { font-family: var(--font-serif); font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; }
h3 { font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
p { color: var(--text-muted); line-height: 1.6; }

.btn {
    display: inline-block; padding: 12px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: 0.3s;
    margin-top: auto; align-self: flex-start;
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #dedede; transform: scale(1.05); }

/* --- 7. NEW: EDUCATION / Q&A CARDS --- */
.edu-card {
    background: #161616; /* Biraz daha açık ton */
    border-left: 3px solid var(--brand-secondary);
}
.edu-question {
    font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: #fff; margin-bottom: 15px;
}
.edu-answer {
    font-size: 0.95rem; color: var(--text-muted); padding-left: 15px; border-left: 1px solid rgba(255,255,255,0.1);
}
.edu-tag {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--brand-secondary); font-weight: 700; margin-bottom: 10px; display: block;
}

/* Blog Visuals (Aynı kaldı, sadece renkler revize) */
.blog-img-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; transition: transform 0.5s ease; z-index: 1;
}
.card:hover .blog-img-bg { transform: scale(1.05); }
.blog-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 100%); z-index: 2;
}

/* --- 8. TOOL CARDS (Ücretsiz Araçlar) --- */
.tool-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1a1a 100%);
    border: 1px solid var(--border-color);
    border-left: 3px solid;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 200px;
}

.tool-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tool-card .tool-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tool-card .tool-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-card:hover .tool-icon svg {
    filter: drop-shadow(0 0 8px currentColor);
}

.tool-card .card-content {
    padding: 25px 20px;
    text-align: center;
}

.tool-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: var(--text-main);
}

.tool-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* --- 8.5 LIVE BADGE --- */
.live-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 20px;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* --- 8.6 WIDGET CARDS --- */
.widget-card {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0a0a15 100%);
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-card:hover::before {
    opacity: 1;
}

.widget-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.widget-card:hover .widget-glow {
    opacity: 0.2;
    transform: scale(1.2);
}

.widget-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.widget-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 12px;
    color: white;
}

.widget-icon svg {
    width: 26px;
    height: 26px;
}

.widget-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(79, 70, 229, 0.2);
    color: var(--brand-primary);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.widget-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.widget-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary);
    transition: all 0.3s ease;
}

.widget-card:hover .widget-cta {
    gap: 12px;
    color: var(--brand-accent);
}

.widget-coming-soon {
    cursor: not-allowed;
    opacity: 0.7;
}

.widget-coming-soon:hover {
    transform: none;
    border-color: var(--border-color);
    box-shadow: none;
}

/* --- 8.7 MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 20px;
    color: white;
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.modal-body {
    padding: 30px;
}

/* --- 8.8 PROMPT FORM --- */
.prompt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(79, 70, 229, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    color: var(--text-main);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-color: transparent;
    color: white;
}

.generate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    margin-top: 10px;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

/* --- 8.9 PROMPT RESULT --- */
.prompt-result {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.result-header span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    border-radius: 8px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.copy-btn:hover {
    background: #10b981;
    color: white;
}

.copy-btn.copied {
    background: #10b981;
    color: white;
}

.result-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    white-space: pre-wrap;
}

/* --- 8.10 HOBBY CARDS --- */
.hobby-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #151520 100%);
    border: 1px solid var(--border-color);
    min-height: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hobby-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.hobby-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.hobby-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
}

.hobby-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hobby-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.hobby-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.hobby-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hobby-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hobby-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hobby-link:hover {
    color: var(--brand-accent);
}

/* Fenerbahçe Card */
.fenerbahce-card {
    border-left: 3px solid #FFED00;
}

.fenerbahce-icon {
    background: linear-gradient(135deg, #00205B, #FFED00);
}

.fenerbahce-badge {
    background: linear-gradient(135deg, #00205B, #002D72);
    color: #FFED00;
}

/* Music Card */
.music-card {
    border-left: 3px solid #1DB954;
}

.music-icon {
    background: linear-gradient(135deg, #1DB954, #191414);
}

.music-badge {
    background: rgba(29, 185, 84, 0.2);
    color: #1DB954;
}

/* YouTube Card */
.youtube-card {
    border-left: 3px solid #FF0000;
}

.youtube-icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.youtube-badge {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.youtube-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FF0000;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-subscribe:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* Cartoon Card */
.cartoon-card {
    border-left: 3px solid #f59e0b;
}

.cartoon-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cartoon-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* --- 8.11 MUSIC PLAYER --- */
.music-player {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.player-track {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.track-art {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.track-artist {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
}

.player-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    color: var(--text-main);
    transform: scale(1.1);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1DB954, #1ed760);
    border-radius: 50%;
    color: white;
}

.play-btn:hover {
    background: linear-gradient(135deg, #1ed760, #1DB954);
    box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
}

.player-progress {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1DB954, #1ed760);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --- 8.12 MOBILE NAV --- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
}

.mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.mobile-nav .nav-item.active,
.mobile-nav .nav-item:hover {
    color: var(--brand-primary);
}

.mobile-nav .nav-item.active svg,
.mobile-nav .nav-item:hover svg {
    transform: scale(1.1);
}

.mobile-nav .nav-item svg {
    transition: transform 0.3s ease;
}

/* --- 9. PROFILE CARD --- */
.profile-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1a 100%);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.profile-image {
    position: relative;
    flex-shrink: 0;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; /* Yukarıdan crop al */
    border: 3px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
                linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) border-box;
    transition: all 0.4s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.profile-card:hover .profile-glow {
    opacity: 0.3;
}

.profile-info {
    flex: 1;
}

.profile-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 12px;
    font-weight: 600;
}

.profile-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.profile-social {
    display: flex;
    gap: 12px;
}

.profile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.profile-social-link:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* --- 10. FOOTER --- */
.site-footer {
    grid-column: span 4;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 20, 0.8) 100%);
    border-top: 1px solid var(--border-color);
    padding: 50px 20px 30px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand .footer-logo span {
    color: var(--brand-primary);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--brand-primary);
}

/* Mobile */
@media (max-width: 900px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .container { 
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Section Headers */
    .section-header {
        width: 100% !important;
        padding: 0 15px !important;
        margin: 20px 0 10px !important;
    }
    
    /* Mobile Slider */
    .mobile-slider {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 15px !important;
        padding: 10px 15px !important;
        width: 100% !important;
    }
    .mobile-slider::-webkit-scrollbar {
        display: none !important;
    }
    
    .mobile-slider .card {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        min-width: 280px !important;
        max-width: 85% !important;
        margin: 0 !important;
    }
    
    /* Non-slider cards */
    .col-span-2:not(.mobile-slider .card), 
    .row-span-2:not(.mobile-slider .card), 
    .col-span-4:not(.mobile-slider):not(.section-header), 
    .card:not(.mobile-slider .card) { 
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        min-width: unset !important;
        margin: 0 15px !important;
    }
    
    .header-bar { 
        flex-direction: column; 
        gap: 15px; 
        align-items: center; 
        padding: 15px;
        width: 100% !important;
        text-align: center;
    }
    .header-info { 
        flex-direction: column; 
        align-items: center; 
        gap: 10px; 
        width: 100%;
    }
    
    /* Slider Dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 15px 0 5px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: var(--brand-primary);
        width: 24px;
        border-radius: 4px;
    }
    
    .slider-dot:hover {
        background: rgba(255, 255, 255, 0.4);
    }
    
    .slider-dot.active:hover {
        background: var(--brand-primary);
    }
    
    /* Tool Cards Mobile */
    .tool-card {
        min-height: 180px;
    }
    
    .tool-card .card-content {
        padding: 20px 15px;
    }
    
    .tool-card .tool-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .tool-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .tool-card p {
        font-size: 0.8rem;
    }
    
    /* Typography Mobile */
    h1 { 
        font-size: 1.8rem; 
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    h2 { 
        font-size: 1.3rem; 
        margin-bottom: 8px;
        flex-wrap: wrap;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .card-content {
        padding: 20px 15px;
    }
    
    /* Section Headers Mobile */
    .col-span-4[style*="margin-top"] {
        padding: 0 5px !important;
    }
    
    .col-span-4 h2 {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .col-span-4 h2 span[style*="margin-left: auto"] {
        margin-left: 0 !important;
        font-size: 0.8rem !important;
    }
    
    /* Typing Text Mobile */
    .typing-text::after {
        right: -5px;
    }
    
    /* Live Badge Mobile */
    .live-badge {
        font-size: 0.55rem;
        padding: 3px 6px;
    }
    
    /* Button Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Hero Section Mobile */
    .card.col-span-2.row-span-2 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .card.col-span-2.row-span-2 .card-content {
        padding: 20px;
    }
    
    .card.col-span-2.row-span-2 h1 {
        font-size: 1.6rem;
    }
    
    .card.col-span-2.row-span-2 p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    /* All Cards Mobile Width Fix */
    .card,
    .card.profile-card,
    .card.hobby-card,
    .card.tool-card,
    .card.widget-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .card-content {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Flex containers in cards - stack vertically */
    .card-content > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    /* Profile Card Mobile */
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-image img {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.4rem;
    }
    
    .profile-bio {
        font-size: 0.85rem;
    }
    
    .profile-social {
        justify-content: center;
    }
    
    /* Hobby Cards Mobile */
    .hobby-card {
        min-height: 200px;
    }
    
    .hobby-title {
        font-size: 1.1rem;
    }
    
    .hobby-desc {
        font-size: 0.8rem;
    }
    
    /* Music Player Mobile */
    .music-card.col-span-2 {
        grid-column: span 1;
    }
    
    .player-controls {
        gap: 10px;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
    }
    
    /* Mobile Nav */
    .mobile-nav {
        display: flex;
        justify-content: space-around;
    }
    
    /* Body padding for mobile nav */
    body {
        padding-bottom: 80px;
    }
    
    /* Footer Mobile */
    .site-footer {
        padding: 40px 15px 25px;
        margin-bottom: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Widget Cards Mobile */
    .widget-card {
        min-height: 200px;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
    
    .widget-desc {
        font-size: 0.85rem;
    }
    
    /* Modal Mobile */
    .modal-overlay {
        padding: 15px;
    }
    
    .modal-content {
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .modal-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .category-buttons {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 14px;
    }
    
    .result-content {
        font-size: 0.85rem;
        padding: 15px;
    }
    
    /* Live Badge Mobile */
    .live-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1200px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        padding: 0 15px;
    }
    
    .col-span-4 {
        grid-column: span 2;
    }
    
    .tool-card {
        min-height: 190px;
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ========================================
   YENİ BÖLÜMLER İÇİN STİLLER
   ======================================== */

/* View Container */
.view-container {
    display: none;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-container.active {
    display: block;
    opacity: 1;
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Geri Dön Butonu */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    font-family: var(--font-main);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateX(-5px);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

/* ========================================
   BLOG STİLLERİ
   ======================================== */

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.blog-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.1);
}

.article-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover .article-card-overlay {
    opacity: 1;
}

.article-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(79, 70, 229, 0.2);
    color: var(--brand-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.article-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.article-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary);
    transition: color 0.3s ease;
}

.article-card:hover .article-read-more {
    color: var(--brand-accent);
}

/* Article Modal */
.article-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.article-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.article-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.article-modal-overlay.active .article-modal-content {
    transform: translateY(0) scale(1);
}

.article-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.article-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.article-modal-header {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.article-modal-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-modal-body {
    padding: 40px;
}

.article-modal-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.article-modal-category {
    padding: 6px 14px;
    background: rgba(79, 70, 229, 0.2);
    color: var(--brand-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-modal-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-modal-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.2;
}

.article-modal-content-text {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-modal-content-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--text-main);
}

.article-modal-content-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-modal-content-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-modal-content-text li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   GALLERY STİLLERİ
   ======================================== */

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.gallery-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery-item-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
    max-width: 800px;
}

.lightbox-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.lightbox-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.lightbox-counter {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-5px);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(5px);
}

/* ========================================
   MUSIC STİLLERİ
   ======================================== */

.music-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.music-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.music-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.music-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.music-track-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.music-track-card:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
}

.music-track-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.music-track-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-track-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(29, 185, 84, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.music-track-card:hover .music-track-play-btn {
    opacity: 1;
}

.music-track-play-btn:hover {
    background: rgba(29, 185, 84, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.music-track-info {
    flex: 1;
}

.music-track-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.music-track-artist {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.music-track-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.music-track-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.music-track-tag {
    padding: 4px 10px;
    background: rgba(29, 185, 84, 0.2);
    color: #1DB954;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.music-track-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 10px;
}

.music-track-actions {
    flex-shrink: 0;
}

.music-track-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid var(--brand-primary);
    border-radius: 50px;
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.music-track-link:hover {
    background: var(--brand-primary);
    color: white;
    transform: scale(1.05);
}

/* Music Player Container */
.music-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    z-index: 1500;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.music-player-container.active {
    transform: translateY(0);
}

.music-player-embed {
    max-width: 1200px;
    margin: 0 auto;
}

.music-player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.music-player-info img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.music-player-info h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.music-player-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.music-player-close {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.music-player-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

/* ========================================
   VIDEOS STİLLERİ
   ======================================== */

.videos-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.videos-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.videos-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card-thumbnail img {
    transform: scale(1.1);
}

.video-card-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-card-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-card-content {
    padding: 20px;
}

.video-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.video-card-category {
    padding: 4px 10px;
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-card-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-content {
    transform: translateY(0) scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-info {
    padding: 30px;
}

.video-modal-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

/* ========================================
   RESPONSIVE - YENİ BÖLÜMLER
   ======================================== */

@media (max-width: 900px) {
    .view-container {
        padding: 15px;
    }

    .blog-header h1,
    .gallery-header h1,
    .music-header h1,
    .videos-header h1 {
        font-size: 2rem;
    }

    .articles-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .article-modal-content {
        max-height: 95vh;
    }

    .article-modal-header {
        height: 250px;
    }

    .article-modal-body {
        padding: 25px 20px;
    }

    .article-modal-title {
        font-size: 1.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .music-track-card {
        flex-direction: column;
        text-align: center;
    }

    .music-track-image {
        width: 100%;
        height: 200px;
    }

    .music-track-actions {
        width: 100%;
    }

    .music-track-link {
        width: 100%;
        justify-content: center;
    }

    .video-card-thumbnail {
        height: 180px;
    }

    .video-modal-content {
        border-radius: 16px;
    }

    .video-modal-info {
        padding: 20px;
    }

    .video-modal-info h2 {
        font-size: 1.3rem;
    }
}

