/* wanimex.xyz - Modern porno Site CSS */

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #000000 0%, #1d0000 50%, #000000 100%);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #dc143c;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ff1744;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    background: linear-gradient(45deg, #dc143c, #ff1744);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.search-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: #ffffff;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-result-item:hover {
    background: rgba(220, 20, 60, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 50px !important;
    height: 70px !important;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

/* Ensure search dropdown overlays content without shifting layout */
.header .search-section { position: relative; }
.header .search-input { width: 100%; }

.search-result-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: bold;
}

.search-result-info p {
    color: #dc143c;
    margin: 0 0 3px 0;
    font-size: 12px;
}

.search-result-info small {
    color: #999;
    font-size: 11px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}


/* Hero Section */
.hero-section {
    margin-top: 80px;
    position: relative;
    height: 350px; /* Yüksekliği biraz artıralım */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Kayan resimlerin taşmasını engelle */
}

/* Varsayılan statik arka plan */
.hero-section:not(.hero-dynamic-bg) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Dinamik kayan arka plan stilleri */
.hero-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-track {
    display: flex;
    /* Genişlik ve animasyon süresi JS ile ayarlanacak, ancak bir başlangıç değeri verelim */
    width: calc(250px * 30); 
    height: 100%;
    animation: slide-hero-bg-rtl 90s linear infinite; /* Animasyon adı ve süresi güncellendi */
    justify-content: flex-start; /* Tek resim olduğunda soldan başlaması için */
}

.hero-slide {
    position: relative;
    width: 250px; /* Resimlerin genişliği (JS tarafından kullanılır) */
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #000; /* Resim yüklenemezse siyah arka plan */
}

.hero-slide-bg {
    position: absolute;
    top: -10%; /* Kenarlardaki bulanıklığın daha iyi görünmesi için büyüt */
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.6); /* Bulanıklık ve karartma efekti */
    z-index: 1;
}

.hero-slide-fg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 16:9'dan küçükse, kenarları boş bırakarak sığdır (arka plan görünecek) */
    z-index: 2;
}

/* Yarı saydam siyah katman */
.hero-dynamic-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Opaklığı buradan ayarlayabilirsiniz */
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    position: relative; /* z-index'in çalışması için gereklidir */
    z-index: 3; /* Değeri 3'e yükselterek overlay'in üzerine alıyoruz */
}

.hero-title { /* z-index'i 3 yapalım ki overlay'in üstünde kalsın */
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #dc143c, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 3;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
    z-index: 3;
}

.watch-now-btn {
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    z-index: 3;
}

.watch-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

/* Slider Sections */
.slider-section {
    margin: 50px 0;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #dc143c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    border-radius: 2px;
}

.slider-container {
    position: relative;
    overflow: hidden; /* Mobil cihazlarda yatay kaydırmayı önlemek için */
    border-radius: 15px;
    padding: 0 30px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.porno-card {
    width: 300px; /* Kartın sabit genişliği */
    height: 400px; /* Kartın sabit yüksekliği */
    flex-shrink: 0; 
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex; /* İçeriği dikeyde düzenlemek için flexbox kullan */
    flex-direction: column;
}

.porno-card:hover .porno-cover-fg {
    transform: scale(1.1);
}

.porno-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.3);
}

.porno-cover-wrapper {
    position: relative;
    width: 100%;
    height: calc(100% - 113px); /* Kart yüksekliğinden bilgi bölümü yüksekliğini çıkar */
    overflow: hidden;
    background-color: #111;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.porno-cover-bg {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.7);
    z-index: 1;
}

.porno-cover-fg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Orijinal resmi asla kırpma, sığdır */
    z-index: 2;
    transition: transform 0.4s ease;
}

.porno-card:hover .porno-cover-wrapper {
    transform: scale(1.05);
}

.porno-info {
    padding: 15px; /* Bilgi bölümü iç boşluğu */
    height: 113px; /* Bilgi bölümünün sabit yüksekliği (başlık, rating, padding toplamı) */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği dikeyde dağıt */
}

.porno-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.porno-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    font-size: 14px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 20, 60, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav:hover {
    background: #dc143c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-prev {
    left: 10px; /* Okları içeri alıyoruz */
}

.slider-next {
    right: 10px; /* Okları içeri alıyoruz */
}

/* Login/Register Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/bglg.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .auth-container {
        padding: 15px;
        align-items: flex-start;
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 10px;
        padding-top: 30px;
    }
}

.auth-box {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex; /* İçeriği ortalamak için */
    justify-content: center; /* İçeriği ortalamak için */
    max-width: 500px; /* Kutuyu daralt */
    width: 100%;
}

@media (max-width: 768px) {
    .auth-box {
        min-height: auto;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .auth-box {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.auth-left {
    flex: 1;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .auth-left {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .auth-left {
        min-height: 150px;
    }
}

.auth-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bglg.png');
    background-size: cover;
    opacity: 0.3;
}

.auth-left-content {
    text-align: center;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.auth-image-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    max-width: 290px;
    width: 100%;
}

.auth-image-panel img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.auth-text-content {
    margin-bottom: 30px;
}

.auth-text-content h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.auth-text-content p {
    font-size: 16px;
    opacity: 0.9;
}

.auth-right {
    width: 100%; /* Tam genişlik kullan */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .auth-right {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .auth-right {
        padding: 20px;
    }
}

.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #dc143c;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}

.form-input::placeholder {
    color: #999999;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.google-login {
    background: #4285f4;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-login:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

/* porno Detail Page */
.porno-detail {
    margin-top: 100px;
    padding: 40px 0;
}

.porno-detail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.porno-poster {
    flex: 0 0 300px;
}

.porno-poster img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.watch-button {
    width: 100%;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.watch-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.porno-info-detail {
    flex: 1;
}

.porno-title-detail {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #dc143c;
}

.porno-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
}

.porno-description {
    font-size: 16px;
    line-height: 1.8;
    color: #dddddd;
    margin-bottom: 30px;
}

/* Donation Popup */
.donation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.donation-overlay.active {
    opacity: 1;
    visibility: visible;
}

.donation-popup {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.donation-overlay.active .donation-popup {
    transform: scale(1);
}

.donation-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #dc143c;
}

.donation-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #dddddd;
}

.donation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.donate-btn {
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.close-donation {
    background: #666666;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-donation:hover {
    background: #888888;
    transform: translateY(-2px);
}

/* Admin Panel */
.admin-container {
    margin-top: 100px;
    padding: 40px 0;
}

.admin-header {
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.admin-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-nav-btn {
    background: rgba(220, 20, 60, 0.2);
    color: #dc143c;
    padding: 12px 20px;
    border: 2px solid #dc143c;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.admin-nav-btn:hover,
.admin-nav-btn.active {
    background: #dc143c;
    color: white;
    transform: translateY(-2px);
}

.admin-content {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .slider-container {
        padding: 0 25px;
    }
    
    /* Tablet için Kart Boyutları */
    .porno-card {
        width: 220px;
        height: 320px;
    }
    .porno-cover-wrapper {
        height: calc(100% - 100px);
    }
    .porno-info {
        height: 100px;
        padding: 12px;
    }
    .porno-title {
        font-size: 14px;
    }
    .porno-rating {
        font-size: 13px;
    }
}

@media (max-width: 768px) { /* Mobil Cihazlar */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .search-input {
        width: 200px;
    }
    
    .hero-title {
        font-size: 2.5em;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .porno-detail-content {
        flex-direction: column;
    }
    
    .porno-poster {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .auth-box {
        flex-direction: column;
        max-width: 500px;
        margin: 20px;
    }
    
    .auth-left {
        min-height: 200px;
        padding: 30px;
    }
    
    .auth-right {
        padding: 30px;
    }
    
    .auth-image-panel {
        max-width: 120px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.5); /* Arka planı daha belirgin yapalım */
    }
    
    .slider-container {
        padding: 0; /* İç boşluğu sıfırlıyoruz, oklar içeride olacak */
    }

    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    .watch-panel {
        flex-direction: column;
        max-width: 500px;
        margin: 20px;
    }
    
    .watch-left, .watch-right {
        flex: none;
        padding: 30px;
    }
    
    /* Mobil için Kart Boyutları */
    .porno-card {
        width: 180px;
        height: 280px;
    }
    .porno-cover-wrapper {
        height: calc(100% - 90px);
    }
    .porno-info {
        height: 90px;
        padding: 10px;
    }
    .porno-title {
        font-size: 13px;
    }


    .porno-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .search-input {
        width: 150px;
        font-size: 14px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 2em;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    /* Mobil için Kart Boyutları (Daha küçük ekranlar) */
    .porno-card {
        width: calc(50% - 10px); /* Ekranda 2 kart */
        height: auto; /* Yüksekliği otomatik yapıp aspect-ratio ile yönetelim */
        aspect-ratio: 2 / 3; /* Kart en-boy oranı */
    }
    .porno-cover-wrapper {
        height: 65%; /* Resim alanı kartın %65'i olsun */
    }
    .porno-info {
        height: 35%; /* Bilgi alanı kartın %35'i olsun */
        padding: 8px;
        justify-content: center;
    }
    .porno-title {
        font-size: 12px;
    }

    
    .section-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .slider-container {
        padding: 0;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.5);
    }

    /* Hero slider için mobil ayarları */
    .hero-slide {
        width: 200px; /* Mobil için resim genişliğini ayarlayalım */
    }
    
    .auth-box {
        margin: 10px;
        max-width: 400px;
    }
    
    .auth-left {
        padding: 20px;
        min-height: 150px;
    }
    
    .auth-right {
        padding: 20px;
    }
    
    .auth-image-panel {
        max-width: 100px;
        padding: 15px;
    }
    
    .auth-text-content h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    .auth-text-content p {
        font-size: 0.9em;
    }
    
    .google-login {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .auth-form {
        padding: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .form-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .watch-panel {
        margin: 10px;
        min-height: 500px;
    }
    
    .watch-left, .watch-right {
        padding: 20px;
    }
    
    .porno-title {
        font-size: 1.8em;
    }
    
    .porno-cover-container {
        max-width: 250px;
        padding: 15px;
    }
    
    .watch-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .detail-label {
        font-size: 0.8em;
    }
    
    .detail-value {
        font-size: 1em;
    }
    
    .donation-popup {
        padding: 20px;
        margin: 20px;
    }
    
    .donation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .donate-btn, .close-donation {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes slide-hero-bg-rtl {
    from {
        transform: translateX(calc(-250px * 15)); /* Animasyonun bitiş noktasından başla */
    }
    to {
        transform: translateX(0); /* Başlangıç noktasına dön */
    }
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    border-top-color: #dc143c;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
}

.alert-info {
    background: rgba(33, 150, 243, 0.2);
    border: 2px solid #2196f3;
    color: #2196f3;
}

/* Mobil Navigasyon Stilleri */
.mobile-nav-toggle {
    display: none; /* Masaüstünde gizli */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}
.mobile-nav-menu {
    background-color: #000000;
    width: 100%; /* Sayfanın tamamını kaplar */
}



.mobile-nav {
    display: none; /* Masaüstünde gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Arka planı tam siyah yap */
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    justify-content: flex-start; /* Menüyü yukarıya yasla */
    align-items: center;
    padding-top: 80px; /* Header'ın arkasında kalmaması için üstten boşluk */
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-menu { list-style: none; padding: 0; margin: 0; text-align: center; }
.mobile-nav-menu li { margin: 20px 0; }
.mobile-nav-menu a { color: #fff; text-decoration: none; font-size: 24px; font-weight: bold; transition: color 0.3s; }
.mobile-nav-menu a:hover { color: #dc143c; }

/* Mobil Menü Header (Logo ve Kapat Butonu için) */
.mobile-nav-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px; /* Ana header yüksekliği ile aynı */
    box-sizing: border-box;
}

/* Mobil Navigasyon Aktif Olduğunda */
body.mobile-nav-active { overflow: hidden; }
body.mobile-nav-active .mobile-nav { transform: translateX(0); }
body.mobile-nav-active .mobile-nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.mobile-nav-active .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
body.mobile-nav-active .mobile-nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Mobil Cihazlar için Media Query (Örn: 992px altı) */
@media (max-width: 992px) {
    .desktop-nav {
        display: none; /* Masaüstü menüsünü gizle */
    }
    .mobile-nav-toggle {
        display: block; /* Hamburger ikonu göster */
        order: 3; /* Hamburger ikon sağda */
        flex-shrink: 0; /* Küçülmesini engelle */
    }
    .mobile-nav {
        display: flex; /* Mobil menüyü flex yap */
    }
    .header-content {
        justify-content: space-between; /* Logo, arama ve ikonu hizala */
    }
    .search-section { 
        order: 2; 
        flex: 1 1 auto; /* Esneme ve küçülme davranışını ayarla */
        margin: 0 10px; 
    }
    .logo { order: 1; flex-shrink: 0; }

    .search-input {
        width: 100%; /* Arama çubuğunu esnek yap */
    }
}

/* Reklam Alanı Stilleri */
.ad-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #dc143c;
    border-radius: 15px;
    padding: 20px;
    margin: 40px auto;
    text-align: center;
    color: #666;
    font-weight: bold;
    min-height: 100px;
}
.ad-container {
    margin: 40px auto;
}

/* Dikey Reklam için 2 Sütunlu Yapı */
.page-with-sidebar {
    display: flex;
    gap: 30px;
    margin-top: 120px;
}
.sidebar-ad {
    flex: 0 0 300px; /* Dikey reklam genişliği */
}
.main-content {
    flex: 1;
}

@media (max-width: 992px) {
    .page-with-sidebar {
        flex-direction: column;
    }
    .sidebar-ad {
        order: 2; /* Reklamı mobilde içeriğin altına al */
        flex-basis: auto;
    }
}

/* Genel Buton Stilleri (Admin panelinden alındı) */
.action-btn {
    background: #dc143c;
    color: white !important; /* Link rengini üzerine yazmak için */
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.action-btn.danger {
    background: #f44336;
}
.action-btn.danger:hover { background: #d32f2f; }

.action-btn.success {
    background: #4caf50;
}
.action-btn.success:hover { background: #45a049; }
