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

/* Login Modal Styles */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.login-modal.active {
    display: flex;
}

.login-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
    border: 2px solid #ffa31a;
    animation: modalSlideIn 0.3s ease-out;
}

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

.login-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #2a2a2a;
}

.login-modal-header h2 {
    font-size: 1.8rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.login-modal-header h2 i {
    color: #ffa31a;
    font-size: 1.6rem;
}

.login-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-modal-body p {
    color: #b3b3b3;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.login-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.login-input:focus {
    border-color: #ffa31a;
    background: #323232;
    box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.2);
}

.login-input::placeholder {
    color: #666;
}

.login-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.login-submit-btn:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.4);
}

.login-submit-btn i {
    font-size: 1.1rem;
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* Mobil Responsive - Login Modal */
@media (max-width: 768px) {
    .login-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .login-modal-header h2 {
        font-size: 1.5rem;
    }

    .login-modal-body p {
        font-size: 0.95rem;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Alert Notification System */
.alert-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.alert-notification {
    background: #1a1a1a;
    border-left: 4px solid #ffa31a;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease-out;
    min-width: 300px;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-notification.success {
    border-left-color: #22c55e;
}

.alert-notification.error {
    border-left-color: #ef4444;
}

.alert-notification.info {
    border-left-color: #ffa31a;
}

.alert-notification.warning {
    border-left-color: #f59e0b;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-notification.success .alert-icon {
    color: #22c55e;
}

.alert-notification.error .alert-icon {
    color: #ef4444;
}

.alert-notification.info .alert-icon {
    color: #ffa31a;
}

.alert-notification.warning .alert-icon {
    color: #f59e0b;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.alert-message {
    font-size: 0.9rem;
    color: #b3b3b3;
}

.alert-close {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.2s;
}

.alert-close:hover {
    color: #ffffff;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ffa31a;
}

.main-header {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Video/Photo detay sayfaları için header */
.detail-page-header {
    flex-wrap: wrap;
}

.detail-page-header .logo {
    order: 1;
}

.detail-page-header .header-buttons {
    order: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 1px solid #404040;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-decoration: none;
}

.back-btn:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-color: #ffa31a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.3);
}

.back-btn i {
    font-size: 1.1rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-text {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.logo-domain {
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    color: #000000;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(255, 163, 26, 0.4);
}

.search-bar {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.9rem 3.5rem 0.9rem 1.2rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.search-bar input:focus {
    border-color: #ffa31a;
    background: #323232;
    box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.1);
}

.search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border: none;
    padding: 0.65rem 1.3rem;
    border-radius: 6px;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
    transform: translateY(-50%) scale(1.05);
}

.search-bar button i {
    font-size: 1.1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.telegram-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #0088cc 0%, #006fa3 100%);
    border: none;
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0077b3 0%, #005a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.telegram-btn i {
    font-size: 1.2rem;
}

.favorites-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #ffa31a;
    color: #ffa31a;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.favorites-btn:hover {
    background: #ffa31a;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.4);
}

.favorites-btn.active {
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    color: #000000;
}

.favorites-btn i {
    font-size: 1.1rem;
}

.favorites-count {
    background: #ffa31a;
    color: #000000;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

.favorites-btn.active .favorites-count {
    background: #000000;
    color: #ffa31a;
}

/* Sidebar Styles */
.main-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    height: fit-content;
}

.category-toggle {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border: none;
    color: #000000;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.3);
}

.category-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 163, 26, 0.5);
}

.category-toggle i {
    transition: transform 0.3s;
    font-size: 1.1rem;
}

.category-toggle.active i {
    transform: rotate(180deg);
}

.categories-list {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.categories-list.open {
    max-height: 600px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid #2a2a2a;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: rgba(255, 163, 26, 0.1);
    padding-left: 1.5rem;
}

.category-item.active {
    background: linear-gradient(90deg, rgba(255, 163, 26, 0.2) 0%, transparent 100%);
    border-left: 4px solid #ffa31a;
}

.category-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #353535 100%);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-icon i {
    font-size: 1.3rem;
}

.category-name {
    font-weight: 600;
    color: #ffffff;
}

/* Content Area */
.content-area {
    flex: 1;
}

.content-type-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2a2a2a;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    transition: all 0.3s;
}

.tab-btn i {
    margin-right: 0.5rem;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #ffa31a;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffa31a 0%, #ff8800 100%);
}

.tab-btn .count {
    font-size: 0.85rem;
    color: #666;
    margin-left: 0.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2a2a2a;
}

.section-header h2 {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.section-header h2 i {
    color: #ffa31a;
    font-size: 1.5rem;
}

.section-header h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #ffa31a 0%, #ff8800 100%);
    border-radius: 2px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.video-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 163, 26, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #2a2a2a;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.duration i {
    font-size: 0.75rem;
}

.quality-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    color: #000000;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255, 163, 26, 0.4);
}

.video-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    width: 100%;
    margin-top: auto;
}

.views-count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.views-count i {
    color: #ffa31a;
}

.rating {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    font-size: 0.75rem;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.photo-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 163, 26, 0.3);
}

.photo-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #2a2a2a;
    overflow: hidden;
}

.photo-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover .photo-thumbnail img {
    transform: scale(1.05);
}

.photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.photo-count::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

.photo-info {
    padding: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.photo-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-align: left;
}

.photo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    width: 100%;
    margin-top: auto;
}

.photo-meta .date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.photo-meta .date i {
    color: #ffa31a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.page-btn {
    padding: 0.7rem 1.2rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.page-btn:hover:not(:disabled):not(.active) {
    background: #3a3a3a;
    border-color: #ffa31a;
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    color: #000000;
    border-color: #ffa31a;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    padding: 0.7rem;
    color: #666;
    font-weight: bold;
}

/* Video Player Page */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin: 2rem 0;
}

.video-section {
    min-width: 0;
}

.video-player-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    object-fit: contain;
}

.video-protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background: transparent;
}

.video-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-player-container:hover .video-player-controls {
    opacity: 1;
}

.play-pause-btn, .fullscreen-btn {
    background: rgba(255, 163, 26, 0.9);
    border: none;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
}

.play-pause-btn:hover, .fullscreen-btn:hover {
    background: #ffa31a;
    transform: scale(1.1);
}

.video-progress-container {
    flex: 1;
    position: relative;
}

.video-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.video-progress-filled {
    height: 100%;
    background: #ffa31a;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.video-time-display {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

/* Video player koruma stilleri */
.video-player::-webkit-media-controls-download-button {
    display: none !important;
}

.video-player::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Video player görünüm iyileştirmeleri */
.video-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,163,26,0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.video-player {
    filter: brightness(1.02) contrast(1.05);
    transition: filter 0.3s;
}

.video-player-container:hover .video-player {
    filter: brightness(1.05) contrast(1.08);
}

.video-info-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.video-title-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8c00 100%);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(255, 163, 26, 0.3);
    transition: all 0.3s ease;
}

.video-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.5);
}

.video-category-badge i {
    font-size: 0.85rem;
}

.video-category-badge .category-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.video-category-badge .category-link:hover {
    color: #000000;
    text-decoration: underline;
}

.video-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 2px solid #2a2a2a;
    margin-bottom: 1rem;
}

.video-stats-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b3b3b3;
    font-size: 0.95rem;
}

.stat-badge i {
    color: #ffa31a;
    font-size: 1.1rem;
}

.stat-number {
    font-weight: 600;
    color: #ffffff;
}

.video-actions-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.action-button:hover {
    background: #3a3a3a;
    border-color: #ffa31a;
    transform: translateY(-2px);
}

.action-button i {
    font-size: 1.1rem;
}

.action-button.like-btn.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #ef4444;
    color: #ffffff;
}

.action-button.active {
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border-color: #ffa31a;
    color: #000000;
}

/* Video Description */
.video-description {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2a2a2a;
}

.description-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-title i {
    color: #ffa31a;
}

.description-date {
    color: #999;
    font-size: 0.9rem;
}

.description-text {
    color: #cccccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Sidebar Section */
.sidebar-section {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title i {
    color: #ffa31a;
}

/* ====== ÖNERİLEN VİDEOLAR/RESİMLER - YOUTUBE TARZI ====== */
.recommended-videos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recommended-video-card {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 8px;
    border-radius: 8px;
}

.recommended-video-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Thumbnail - Sabit 16:9 Aspect Ratio */
.recommended-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 168px;
    height: 94px; /* 168 / 16 * 9 = 94.5 */
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

.recommended-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Duration Badge */
.recommended-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

/* Info Section */
.recommended-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0; /* Flexbox overflow fix */
}

.recommended-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.recommended-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
    color: #aaa;
    line-height: 1.4;
}

.recommended-stats i {
    color: #ffa31a;
    font-size: 11px;
}

.recommended-stats span {
    color: #aaa;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .recommended-thumbnail {
        width: 144px;
        height: 81px; /* 144 / 16 * 9 = 81 */
    }
    
    .recommended-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .recommended-stats {
        font-size: 11px;
    }
    
    .recommended-video-card {
        padding: 6px;
        gap: 10px;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .recommended-thumbnail {
        width: 120px;
        height: 68px; /* 120 / 16 * 9 = 67.5 */
    }
    
    .recommended-title {
        font-size: 12px;
    }
}

/* Comments Section */
.comments-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.comments-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2a2a2a;
}

.comments-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-title i {
    color: #ffa31a;
}

.comments-count-badge {
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9rem;
}

.comment-input-box {
    margin-bottom: 2rem;
}

.comment-input {
    width: 100%;
    padding: 1rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: all 0.3s;
}

.comment-input:focus {
    outline: none;
    border-color: #ffa31a;
    box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.1);
}

.comment-submit-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-submit-btn:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.4);
}

.comment-submit-btn i {
    font-size: 1rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-card {
    background: #2a2a2a;
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 3px solid #404040;
    transition: all 0.3s;
}

.comment-card:hover {
    border-left-color: #ffa31a;
    background: #323232;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #000000;
    flex-shrink: 0;
}

.comment-author {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.comment-date::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

.comment-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery Styles */
.gallery-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.gallery-slider-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease-out;
    will-change: transform, opacity;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 163, 26, 0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
}

.slider-nav:hover {
    background: rgba(255, 163, 26, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.controls-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.slider-nav.prev {
    left: 1rem;
}

.slider-nav.next {
    right: 1rem;
}

.slider-nav i {
    font-size: 1.5rem;
}

.image-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 0.6rem 1.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.current-number {
    color: #ffa31a;
}

.fullscreen-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.fullscreen-btn:hover {
    background: rgba(255, 163, 26, 0.9);
    color: #000000;
}

.fullscreen-btn.controls-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.thumbnail-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: #ffa31a;
}

.thumbnail-item.active {
    border-color: #ffa31a;
    box-shadow: 0 0 20px rgba(255, 163, 26, 0.5);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Report Modal */
.report-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.report-modal.active {
    display: flex;
}

.report-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
}

.report-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2a2a2a;
}

.report-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-modal-title i {
    color: #ef4444;
}

.report-modal-close {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.report-modal-close:hover {
    color: #ffffff;
}

.report-form-group {
    margin-bottom: 1.5rem;
}

.report-form-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.report-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.report-radio-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.report-radio-option:hover {
    background: #323232;
    border-color: #ffa31a;
}

.report-radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.report-radio-option input[type="radio"]:checked + label {
    color: #ffa31a;
}

.report-radio-option label {
    cursor: pointer;
    color: #cccccc;
    font-size: 0.95rem;
    flex: 1;
}

.report-textarea {
    width: 100%;
    padding: 1rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: all 0.3s;
}

.report-textarea:focus {
    outline: none;
    border-color: #ffa31a;
    box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.1);
}

.report-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.report-submit-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.report-submit-btn i {
    font-size: 1rem;
}

/* Favorites Page */
.favorites-header {
    text-align: center;
    margin: 3rem 0;
}

.favorites-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.favorites-header h1 i {
    color: #ffa31a;
}

.favorites-header p {
    color: #b3b3b3;
    font-size: 1.1rem;
}

.empty-favorites {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.empty-favorites-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #ffa31a;
}

.empty-favorites-icon i {
    font-size: 5rem;
}

.empty-favorites h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.empty-favorites p {
    color: #b3b3b3;
    margin-bottom: 2rem;
}

.browse-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.browse-btn:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.4);
}

.browse-btn i {
    font-size: 1.1rem;
}

.remove-favorite {
    background: rgba(239, 68, 68, 0.9) !important; /* Kırmızı arka plan */
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.9) !important;
    border: none;
    padding: 0.6rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: #ffffff;
    font-weight: bold;
}

.remove-favorite:hover {
    background: rgba(239, 68, 68, 1);
    transform: scale(1.1);
}

.remove-favorite i {
    font-size: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid #ffa31a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #ffa31a;
}

.footer-section p,
.footer-section a {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffa31a;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    color: #ffa31a;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* Contact Page */
.contact-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-header h1 i {
    color: #ffa31a;
}

.contact-header p {
    color: #b3b3b3;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info h2 i {
    color: #ffa31a;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #000000;
    font-size: 1.2rem;
}

.contact-info-text h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-text p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-text a {
    color: #ffa31a;
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.contact-form h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form h2 i {
    color: #ffa31a;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffa31a;
    box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffa31a 0%, #ff8800 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.4);
}

.form-submit-btn i {
    font-size: 1rem;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.policy-header p {
    color: #b3b3b3;
    font-size: 1rem;
}

.policy-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.policy-content h2 {
    color: #ffa31a;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h2 i {
    font-size: 1.3rem;
}

.policy-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.policy-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    color: #cccccc;
    line-height: 1.8;
    margin: 1rem 0 1rem 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content strong {
    color: #ffffff;
}

.policy-content a {
    color: #ffa31a;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 1025px) {
    .categories-list {
        max-height: 600px !important;
    }
    
    .category-toggle i {
        transform: rotate(180deg);
    }
    
    .category-toggle-text-desktop {
        display: inline;
    }
    
    .category-toggle-text-mobile {
        display: none;
    }
}

@media (max-width: 1280px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar-section {
        position: static;
    }

    .recommended-videos {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1rem;
    }

    .recommended-video-card {
        flex-direction: column;
    }

    .recommended-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .category-toggle-text-desktop {
        display: none;
    }
    
    .category-toggle-text-mobile {
        display: inline;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
    }

    .search-bar {
        order: 3;
        margin: 0;
        max-width: 100%;
        flex-basis: 100%;
    }

    .header-actions {
        width: 100%;
        order: 2;
        gap: 0.8rem;
    }

    .telegram-btn,
    .favorites-btn {
        flex: 1;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    /* Logo mobilde büyük ve ortalı */
    .logo {
        font-size: 2.2rem;
        width: 100%;
        justify-content: center;
        order: -1;
        margin-bottom: 0.8rem;
    }

    /* Detay sayfası header - mobil */
    .detail-page-header {
        flex-direction: column;
        align-items: center;
    }

    .detail-page-header .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.8rem;
    }

    .detail-page-header .header-buttons {
        order: 2;
        width: 100%;
        flex-direction: column;
        gap: 0.6rem;
    }

    .detail-page-header .header-buttons .back-btn,
    .detail-page-header .header-buttons .favorites-btn {
        width: 100%;
        justify-content: center;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .video-title-main {
        font-size: 1.2rem;
    }
    
    .video-category-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .video-stats-left {
        gap: 1rem;
    }

    .video-actions-bar {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        justify-content: center;
    }

    .main-image-wrapper {
        height: 60vh;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .thumbnails-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .favorites-header h1 {
        font-size: 2rem;
    }
    
    .alert-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .alert-notification {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .video-grid,
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== MOBİL DÜZELTMELER ========== */

/* Sayfanın sağa kaymasını engelle */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Header actions mobilde alt alta */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .header-actions .telegram-btn,
    .header-actions .favorites-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Video stats mobilde düzgün görünsün */
    .video-stats-left {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .stat-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Search bar mobilde düzgün */
    .search-bar {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .search-bar input {
        padding: 0.8rem 3rem 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    /* Daha küçük ekranlar için */
    .main-header {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-domain {
        padding: 0.15rem 0.5rem;
    }
    
    .header-actions .telegram-btn,
    .header-actions .favorites-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .back-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .back-btn span {
        display: none;
    }
    
    /* Video/Photo info box */
    .video-info-box {
        padding: 1rem;
    }
    
    .video-title-main {
        font-size: 1.1rem;
    }
    
    .video-category-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
        gap: 0.4rem;
    }
    
    /* Action buttons */
    .action-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Comments */
    .comment-input {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .footer-links a {
        display: inline-flex;
        justify-content: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-section p {
        text-align: center;
    }
    
    .footer-section h3 {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}
