/* OnlyFans renkleri ve tema değişkenleri */
:root {
    --of-blue: #00AFF0;
    --of-dark-blue: #0090c5;  
    --of-light-bg: #ffffff;
    --of-dark-bg: #f9f9f9;
    --of-card-bg: #ffffff;
    --of-text: #000000;
    --of-secondary-text: #666666;
    --of-border: #e0e0e0;
    --of-premium: #FFD700;
    --of-button-bg: #00AFF0;
    --of-button-hover: #0090c5;
    --of-card-shadow: rgba(0, 0, 0, 0.1);
}

/* Temel stiller */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--of-light-bg);
    color: var(--of-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--of-text);
}

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

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--of-border);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo .lock {
    margin-right: 8px;
    color: var(--of-blue);
}

.logo .only {
    color: #000;
}

.logo .leaks {
    color: var(--of-blue);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--of-text);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--of-blue);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hero section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-color: var(--of-dark-bg);
    border-bottom: 1px solid var(--of-border);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--of-blue);
}

.hero p {
    color: var(--of-secondary-text);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.search-box input {
    width: 100%;
    padding: 15px 65px 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--of-border);
    background-color: #ffffff;
    color: var(--of-text);
    font-size: 16px;
    outline: none;
}

.search-box button {
    position: absolute;
    right: 4px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--of-blue);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box button i {
    font-size: 18px;
}

.search-box button:hover {
    background-color: var(--of-dark-blue);
}

/* Social Icons */
.social-icons {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--of-border);
}

.social-icons ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons ul li {
    margin: 0 10px;
}

.social-icons ul li a {
    color: var(--of-secondary-text);
    font-size: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-icons ul li a:hover {
    color: var(--of-blue);
    opacity: 1;
}

/* Model Grid */
.latest-models {
    padding: 40px 0;
    background-color: var(--of-light-bg);
}

.latest-models h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--of-blue);
    position: relative;
}

.latest-models h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--of-blue);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.model-card {
    background-color: var(--of-card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px var(--of-card-shadow);
    position: relative;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.model-image {
    padding-top: 100%;
    position: relative;
}

.model-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.model-likes {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.model-likes i {
    color: #ff4757;
    margin-right: 4px;
}

.model-name {
    padding: 10px;
}

.model-name h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.model-username {
    color: var(--of-blue);
    font-size: 12px;
    display: block;
    text-align: center;
    margin-top: 3px;
}

/* Model Profil Sayfası */
.model-profile {
    padding: 40px 0;
    background-color: var(--of-light-bg);
}

.model-header {
    display: flex;
    margin-bottom: 25px;
    background-color: var(--of-card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--of-card-shadow);
}

.model-header .model-image {
    width: 250px;
    height: 250px;
    padding-top: 0;
    border-radius: 8px;
    overflow: hidden;
}

.model-info {
    flex: 1;
    padding: 0 0 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-info h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--of-text);
}

.username {
    font-size: 18px;
    color: var(--of-blue);
    font-weight: normal;
    margin-left: 10px;
}

.model-info p {
    opacity: 0.8;
    line-height: 1.8;
    color: var(--of-secondary-text);
}

.model-stats {
    display: flex;
    margin-top: 20px;
    background-color: var(--of-dark-bg);
    border-radius: 8px;
    padding: 15px;
}

.model-stats .stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model-stats .stat i {
    font-size: 24px;
    color: var(--of-blue);
    margin-bottom: 5px;
}

.model-stats .stat .count {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--of-text);
}

.model-stats .stat .label {
    font-size: 14px;
    opacity: 0.7;
    color: var(--of-secondary-text);
}

.model-gallery h2 {
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: var(--of-blue);
}

.model-gallery h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--of-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--of-card-shadow);
    transition: transform 0.3s;
    background-color: var(--of-card-bg);
}

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

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.load-more {
    text-align: center;
    margin-top: 30px;
}

/* Arama Sonuçları */
.search-results {
    padding: 40px 0;
    background-color: var(--of-light-bg);
}

.search-results h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color: var(--of-blue);
}

.search-results .search-box {
    margin-bottom: 30px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--of-card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--of-card-shadow);
}

.no-results i {
    color: var(--of-blue);
    margin-bottom: 15px;
    opacity: 0.7;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--of-text);
}

.no-results p {
    opacity: 0.7;
    color: var(--of-secondary-text);
}

.search-filter {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--of-card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--of-card-shadow);
}

.filter-label {
    font-size: 14px;
    opacity: 0.7;
    margin-right: 15px;
    color: var(--of-secondary-text);
}

.filter-options {
    display: flex;
}

.filter-options a {
    font-size: 14px;
    margin-right: 15px;
    opacity: 0.7;
    padding: 3px 10px;
    border-radius: 20px;
    color: var(--of-text);
}

.filter-options a.active {
    background-color: rgba(0, 175, 240, 0.1);
    color: var(--of-blue);
    opacity: 1;
}

.filter-options a:hover {
    opacity: 1;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0 5px;
    background-color: var(--of-card-bg);
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px var(--of-card-shadow);
}

.pagination a.active {
    background-color: var(--of-blue);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 175, 240, 0.3);
}

.pagination a:hover:not(.active) {
    background-color: var(--of-dark-bg);
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

/* Footer */
footer {
    background-color: #ffffff;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid var(--of-border);
    font-size: 14px;
    position: relative;
    color: var(--of-secondary-text);
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 175, 240, 0.2), transparent);
}

/* Galeriye özel stiller */
.gallery-view {
    padding: 40px 0;
    background-color: var(--of-light-bg);
}

.model-info-small {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.model-info-small img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid rgba(0, 175, 240, 0.3);
}

.model-info-small .name {
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
    color: var(--of-text);
}

.model-info-small .name:hover {
    color: var(--of-blue);
}

.gallery-main {
    background-color: var(--of-card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--of-card-shadow);
}

/* Video Grid ve Kartları */
.model-videos {
    margin-bottom: 40px;
}

.model-videos h2 {
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: var(--of-blue);
}

.model-videos h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--of-blue);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    background-color: var(--of-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--of-card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

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

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

.video-premium {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--of-premium);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.video-premium i {
    margin-right: 5px;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--of-text);
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--of-secondary-text);
}

/* FREE PREMIUM etiket stili */
.free-premium-label {
    background-color: var(--of-premium);
    color: #000;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 10px;
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.free-premium-label i {
    margin-right: 5px;
}

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

.modal-content {
    width: 80%;
    max-width: 800px;
    background-color: var(--of-card-bg);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: var(--of-text);
    cursor: pointer;
    z-index: 3000;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--of-border);
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--of-text);
}

.modal-body {
    padding: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: var(--of-dark-bg);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--of-text);
}

.spinner {
    margin-bottom: 15px;
    font-size: 40px;
    color: var(--of-blue);
}

.loading-text {
    font-size: 18px;
    opacity: 0.8;
}

/* Video play button ve duration */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-play-btn i {
    color: #fff;
    font-size: 26px;
    margin-left: 5px;
}

.video-card:hover .video-play-btn {
    background-color: rgba(0, 175, 240, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobil uyumluluk */
@media screen and (max-width: 1200px) {
    .model-grid, .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .model-grid, .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .model-header {
        flex-direction: column;
    }
    
    .model-header .model-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .model-info {
        padding: 0;
        text-align: center;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 10px;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .model-stats {
        flex-direction: column;
    }
    
    .model-stats .stat {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .model-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .model-stats {
        flex-direction: column;
    }
    
    .model-stats .stat {
        margin-bottom: 15px;
    }
    
    .search-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-label {
        margin-bottom: 10px;
    }
    
    .meta-actions {
        flex-wrap: wrap;
    }
    
    .action-btn {
        margin-bottom: 10px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
} 