/* BudaOldu - Modern Social Sharing Platform */
:root {
    --primary: #E09207;
    --primary-light: #F5A623;
    --primary-dark: #C67E07;
    --secondary: #4A4A4A;
    --dark: #2C2C2C;
    --black: #1A1A1A;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --medium-grey: #666666;
    --border-grey: #E0E0E0;
    
    /* Profil sayfası için eksik değişkenler */
    --lacivert: #2C3E50;
    --koyu-gri: #34495E;
    --acik-gri: #BDC3C7;
    --turkuaz: #1ABC9C;
    --yesil: #27AE60;
    --navy-blue: #2C3E50;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* Logo Styles */
.welcome-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.welcome-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

/* Header Styles */
.header {
    background: var(--black);
    color: var(--white);
    padding: 0.2rem 0; /* Daha da ince header için padding azaltıldı */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px; /* Minimum yükseklik daha da azaltıldı */
}

/* Logo Container Styles */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0; /* Logo küçülmesin */
}

.logo-img {
    height: 30px; /* Logo boyutu daha da küçültüldü */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation when Active */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Menu Styles - Hidden by Default */
.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show menu when hamburger is active */
.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Navigation Links */
.nav-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary);
    padding-left: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .logo-img {
        height: 25px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .container {
        padding: 0 10px;
    }
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    padding-left: 0.5rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
    border: 1px solid var(--border-grey);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 6px;
    margin: 0.25rem;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white);
}

.dropdown-item:first-child {
    margin-top: 0.5rem;
}

.dropdown-item:last-child {
    margin-bottom: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 350x) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        color: var(--white);
        margin: 0;
        border-radius: 0;
    }
    
    .dropdown-item:hover {
        background-color: var(--primary);
        color: var(--white);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark); /* Post içeriği için koyu renk */
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Unified Post Card Styles - BudaOldu Style */
.post-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark);
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.post-card-header {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: var(--dark);
}

.post-card-header:hover {
    background: #e9ecef;
}

.post-card-body {
    padding: 1.5rem;
    color: var(--dark);
}

.post-card-footer {
    padding: 1rem 1.5rem;
    background: var(--light-grey);
    border-top: 1px solid var(--border-grey);
    color: var(--dark);
}

/* BUDA Tags */
.buda-tags {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.buda-tag {
    background: #000;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buda-tag:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

.buda-tag .highlight {
    color: #CC8207;
}

/* User Avatar in Posts */
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Post Details (Hidden by default) */
.post-details {
    display: none;
}

.post-details.active {
    display: block;
}

/* Clickable Username */
.clickable-username {
    cursor: pointer;
    transition: color 0.3s ease;
}

.clickable-username:hover {
    color: var(--primary);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark); /* Header yazıları için koyu renk */
}

.card-body {
    padding: 1.5rem;
    color: var(--dark); /* Body yazıları için koyu renk */
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--light-grey);
    border-top: 1px solid var(--border-grey);
    color: var(--dark); /* Footer yazıları için koyu renk */
}

/* Profile Avatar */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(224, 146, 7, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-grey);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Category Tags */
.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Media Content */
.media-content {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Media Slider Styles */
.media-slider {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.media-slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.media-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.media-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.media-slide img,
.media-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.media-slide video {
    object-fit: contain;
    background: #000;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(0, 0, 0, 0.7);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Media Counter */
.media-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    z-index: 10;
}

/* Single Media Display */
.single-media {
    width: 100%;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.single-media img,
.single-media video {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.single-media video {
    object-fit: contain;
    background: #000;
}

/* Responsive Media Styles */
@media (max-width: 768px) {
    .media-slider-container {
        height: 250px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 8px;
    }
    
    .slider-nav.next {
        right: 8px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
    
    .media-counter {
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .media-slider-container {
        height: 200px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .single-media img,
    .single-media video {
        max-height: 250px;
    }
}

/* PDF Preview Styles */
.pdf-preview-container {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.pdf-preview-container:hover {
    background: #e9ecef;
}

.media-slide.pdf-media .pdf-preview-container {
    height: 100%;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid var(--primary);
}

/* Create Post Styles */
.create-post-container {
    max-width: 800px;
    margin: 0 auto;
}

.create-post-form .form-group {
    margin-bottom: 20px;
}

.create-post-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.create-post-form input[type="text"],
.create-post-form select,
.create-post-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--dark);
}

.create-post-form input[type="text"]:focus,
.create-post-form select:focus,
.create-post-form textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

.create-post-form textarea {
    resize: vertical;
    min-height: 120px;
}

.file-input {
    width: 100%;
    padding: 12px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background: var(--light-grey);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-input:hover {
    border-color: var(--turquoise);
}

.file-info {
    margin-top: 8px;
}

.file-info small {
    color: #666;
    font-size: 14px;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.file-preview-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.file-preview-item img,
.file-preview-item video {
    border-radius: 4px;
    object-fit: cover;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-grey);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* PDF Viewer Styles */
.pdf-viewer {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.pdf-canvas-container {
    position: relative;
    text-align: center;
    background: white;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    gap: 1rem;
}

.pdf-nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.pdf-nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.pdf-nav-btn:hover:not(:disabled) {
    background: var(--primary-dark);
}

.pdf-nav-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.pdf-page-info {
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.pdf-zoom-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-zoom-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    min-width: 30px;
}

.pdf-zoom-btn:hover {
    background: #5a6268;
}

.pdf-zoom-level {
    font-size: 0.75rem;
    color: #6c757d;
    min-width: 40px;
    text-align: center;
}

.pdf-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #6c757d;
}

.pdf-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #dc3545;
    text-align: center;
    padding: 1rem;
}

/* PDF in Media Slider */
.media-slider .pdf-viewer {
    width: 100%;
    height: 400px;
}

.media-slider .pdf-canvas-container {
    height: calc(400px - 60px);
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-controls {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .pdf-nav-buttons {
        order: 2;
    }
    
    .pdf-page-info {
        order: 1;
    }
    
    .pdf-zoom-controls {
        order: 3;
    }
    
    .media-slider .pdf-viewer {
        height: 300px;
    }
    
    .media-slider .pdf-canvas-container {
        height: calc(300px - 80px);
    }
}

/* Instagram Style Video Controls */
.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-container.playing .video-overlay {
    opacity: 0;
}

.video-container.paused .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 24px;
    color: #333;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-play-btn.playing {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-controls {
    opacity: 1;
    pointer-events: auto;
}

.video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
}

.video-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.video-time {
    color: white;
    font-size: 12px;
    text-align: center;
}

.video-muted {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-muted {
    opacity: 1;
}

/* Media Slider Video Styles */
.media-slider .video-container {
    height: 300px;
}

.media-slider .video-container video {
    height: 100%;
    object-fit: cover;
}

/* Single Media Video Styles */
.single-media .video-container {
    max-height: 500px;
}

.single-media .video-container video {
    max-height: 500px;
    object-fit: contain;
}

/* Responsive Video Controls */
@media (max-width: 768px) {
    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-controls {
        padding: 15px 10px 10px;
    }
    
    .media-slider .video-container {
        height: 250px;
    }
}

/* Yeni Etkileşim Butonları */
.interaction-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-interaction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 25px;
    background: var(--light-grey);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.btn-interaction:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-interaction.senin-oldu {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
}

.btn-interaction.senin-oldu:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn-interaction.buda-oldu {
    border-color: var(--primary);
    background: var(--white);
    color: var(--primary);
}

.btn-interaction.buda-oldu:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-interaction.buda-oldu.active {
    background: var(--primary);
    color: var(--white);
}

.btn-interaction.benim-oldu {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--white);
}

.btn-interaction.benim-oldu:hover {
    background: var(--dark);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Etkileşim Bar */
.interaction-bar {
    margin-top: 1rem;
}

.interaction-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--secondary);
}

.stat-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.stat-label {
    font-weight: 500;
}

.interaction-progress {
    width: 100%;
    height: 6px;
    background: var(--border-grey);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 3px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Etkileşim Butonları */
@media (max-width: 768px) {
    .interaction-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-interaction {
        min-width: auto;
        padding: 0.75rem 1rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
}

/* Modal Stilleri */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--acik-gri);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: var(--white);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.search-container {
    margin-bottom: 1rem;
}

.search-container input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--acik-gri);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
}

.users-list {
    max-height: 300px;
    overflow-y: auto;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid var(--acik-gri);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
}

.user-item:hover {
    background: var(--acik-gri);
    border-color: var(--primary);
    transform: translateX(5px);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: var(--lacivert);
    margin-bottom: 0.25rem;
}

.user-username {
    font-size: 0.9rem;
    color: var(--koyu-gri);
}

.user-category {
    font-size: 0.8rem;
    color: var(--secondary);
    background: var(--acik-gri);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--koyu-gri);
    font-style: italic;
}

.no-users {
    text-align: center;
    padding: 2rem;
    color: var(--koyu-gri);
    font-style: italic;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 70vh;
    }
    
    .user-item {
        padding: 0.5rem;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Profile Modal Styles */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.profile-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 800px;
    height: 90%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    animation: slideIn 0.3s ease-in-out;
}

.profile-modal-header {
    background: var(--black);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.profile-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.profile-modal-body {
    height: calc(100% - 80px);
    overflow-y: auto;
    padding: 2rem;
}

.profile-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--koyu-gri);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--acik-gri);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Clickable username styles */
.clickable-username {
    cursor: pointer;
    transition: color 0.3s ease;
}

.clickable-username:hover {
    color: var(--primary);
    text-decoration: underline;
}