/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,20,147,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,20,147,0.05)"/><circle cx="80" cy="80" r="0.8" fill="rgba(255,20,147,0.08)"/></svg>');
    z-index: -1;
    pointer-events: none;
}

/* Yaş Doğrulama Modal */
.age-warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal-content {
    background: linear-gradient(135deg, #2d1b1b, #1a1a1a);
    border: 2px solid #ff1493;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.age-modal-content h2 {
    color: #ff1493;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-modal-content p {
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-confirm-btn {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-confirm-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.age-exit-btn {
    background: linear-gradient(135deg, #666, #999);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-exit-btn:hover {
    background: linear-gradient(135deg, #999, #ccc);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d1b1b);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 2s ease-in-out 3s forwards;
}

.loading-content {
    text-align: center;
    color: #ffffff;
}

.heart-loader {
    position: relative;
    margin-bottom: 2rem;
}

.heart-body {
    font-size: 4rem;
    animation: heartPulse 1.5s ease-in-out infinite;
}

.heart-particles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.heart-particles span {
    position: absolute;
    font-size: 1.5rem;
    animation: particleFloat 2s ease-in-out infinite;
}

.heart-particles span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.heart-particles span:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.heart-particles span:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    color: #ff1493;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Seductive Header */
.seductive-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    animation: slideDown 1s ease-out;
    border-bottom: 2px solid rgba(255, 20, 147, 0.3);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.flame-icon {
    font-size: 3rem;
    animation: flameFlicker 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

@keyframes flameFlicker {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.main-logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: seductiveGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

@keyframes seductiveGlow {
    from { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 20, 147, 0.3)); }
    to { filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 20, 147, 0.6)); }
}

.seductive-text {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-weight: 700;
}

.vip-text {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.tagline {
    font-size: 1rem;
    color: #ff69b4;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-style: italic;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 1s ease-out both;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.4), transparent);
    transition: left 0.6s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    border-color: #ff1493;
}

.admin-link {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white !important;
    border: 2px solid #ff1493;
}

.admin-link:hover {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-heart,
.floating-fire,
.floating-star,
.floating-lipstick {
    position: absolute;
    font-size: 2rem;
    animation: seductiveFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.floating-heart { top: 20%; left: 10%; animation-delay: 0s; }
.floating-fire { top: 60%; right: 15%; animation-delay: 2s; }
.floating-star { top: 40%; left: 80%; animation-delay: 4s; }
.floating-lipstick { bottom: 30%; right: 10%; animation-delay: 6s; }

@keyframes seductiveFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.6; }
    33% { transform: translateY(-25px) rotate(120deg) scale(1.1); opacity: 0.8; }
    66% { transform: translateY(15px) rotate(240deg) scale(0.9); opacity: 0.4; }
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 27, 27, 0.9));
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    animation: seductiveShapeFloat 10s ease-in-out infinite;
    filter: blur(1px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -8%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 60%;
    animation-delay: 4s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    animation-delay: 6s;
}

.shape-5 {
    width: 150px;
    height: 150px;
    bottom: 40%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes seductiveShapeFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-40px) scale(1.1) rotate(90deg); opacity: 0.5; }
    50% { transform: translateY(-80px) scale(0.9) rotate(180deg); opacity: 0.7; }
    75% { transform: translateY(-40px) scale(1.05) rotate(270deg); opacity: 0.5; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: #ffffff;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1;
    animation: seductiveSlideUp 1.2s ease-out;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

@keyframes seductiveSlideUp {
    from { opacity: 0; transform: translateY(80px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.seductive-highlight {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ff69b4;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.6;
    font-style: italic;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    animation: statPulse 3s ease-in-out infinite;
}

.stat-box:nth-child(1) { animation-delay: 0s; }
.stat-box:nth-child(2) { animation-delay: 1s; }
.stat-box:nth-child(3) { animation-delay: 2s; }

@keyframes statPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff1493, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #ffffff;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.4), rgba(255, 105, 180, 0.4));
}

.feature-icon {
    font-size: 2rem;
    color: #ff1493;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.bounce-in {
    animation: seductiveBounceIn 1s ease-out both;
}

.bounce-in-delay {
    animation: seductiveBounceIn 1s ease-out 0.2s both;
}

.bounce-in-delay-2 {
    animation: seductiveBounceIn 1s ease-out 0.4s both;
}

@keyframes seductiveBounceIn {
    0% { opacity: 0; transform: scale(0.3) rotate(-10deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(5deg); }
    70% { transform: scale(0.95) rotate(-2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.seductive-btn {
    font-family: 'Playfair Display', cursive;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
    border: 3px solid #ff1493;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 20, 147, 0.6);
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
}

.pulse-animation {
    animation: seductivePulse 2.5s infinite;
}

@keyframes seductivePulse {
    0% { box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4); }
    50% { box-shadow: 0 20px 60px rgba(255, 20, 147, 0.8); }
    100% { box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff69b4;
    border: 3px solid #ff69b4;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.4);
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 20, 147, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.warning-icon {
    font-size: 1.5rem;
    color: #ff1493;
}

.warning-text {
    font-size: 0.9rem;
    color: #ff69b4;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.floating-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 20, 147, 0.3);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 70px rgba(255, 20, 147, 0.3);
    animation: seductiveCardFloat 5s ease-in-out infinite;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

@keyframes seductiveCardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
    75% { transform: translateY(-25px) rotate(1deg); }
}

.floating-card .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ff1493;
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.6));
}

.floating-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.floating-card p {
    color: #ff69b4;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.price-tag {
    background: linear-gradient(135deg, #ff1493, #ffd700);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.seductive-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(255, 105, 180, 0.3));
    border-color: rgba(255, 20, 147, 0.5);
}

.seductive-price {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
}

.hero-decoration {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0.7;
}

.decoration-heart,
.decoration-fire,
.decoration-star {
    font-size: 2.5rem;
    animation: decorationFloat 6s ease-in-out infinite;
}

.decoration-heart { animation-delay: 0s; }
.decoration-fire { animation-delay: 2s; }
.decoration-star { animation-delay: 4s; }

@keyframes decorationFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* ===== REKLAM BANNERLARI ===== */

/* Üst Reklam Banner */
.top-ad-banner {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    animation: slideDownBanner 0.5s ease-out;
}

@keyframes slideDownBanner {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ad-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.ad-link:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

.ad-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ad-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Reklam Banner */
.footer-ad-banner {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border-top: 2px solid rgba(255, 20, 147, 0.3);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-ad-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ad-text {
    flex: 1;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

.ad-price {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 1rem;
}

.ad-buttons {
    display: flex;
    gap: 1rem;
}

.ad-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ad-btn.primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.ad-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff69b4;
    border: 2px solid #ff69b4;
    backdrop-filter: blur(10px);
}

.ad-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
}

/* ===== VIDEO PLAYER STYLES ===== */

.video-player-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 20, 147, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.play-button-large {
    font-size: 4rem;
    color: #ffffff;
    background: rgba(255, 20, 147, 0.8);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.play-button-large:hover {
    transform: scale(1.1);
    background: rgba(255, 20, 147, 1);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.video-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-duration,
.video-quality {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d1b1b);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 20, 147, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #ff1493;
    transform: scale(1.1);
}

.video-player-wrapper {
    position: relative;
}

.main-video-player {
    width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.video-player-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: rgba(255, 20, 147, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: #ff1493;
    transform: scale(1.1);
}

/* ===== ADMIN PANEL STYLES ===== */

/* Admin Header */
.admin-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(255, 20, 147, 0.3);
}

.admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-icon {
    font-size: 2.5rem;
    color: #ff1493;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.admin-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-status {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.admin-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.admin-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.4), transparent);
    transition: left 0.6s;
}

.admin-nav .nav-link:hover::before {
    left: 100%;
}

.admin-nav .nav-link:hover,
.admin-nav .nav-link.active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    border-color: #ff1493;
}

.admin-nav .logout-link:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff3838);
}

/* Admin Container */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    margin-top: 100px;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 300px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    backdrop-filter: blur(20px);
    border-right: 2px solid rgba(255, 20, 147, 0.2);
    padding: 2rem 0;
    position: fixed;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.sidebar-content {
    padding: 0 2rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #ff69b4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.4);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff1493, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #ffffff;
}

.stat-icon {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    display: block;
}

.quick-actions {
    display: grid;
    gap: 0.75rem;
}

.quick-btn {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.4), rgba(255, 105, 180, 0.4));
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.5);
}

.system-status {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.status-label {
    color: #ff69b4;
    font-weight: 500;
}

.status-value {
    color: #ffffff;
    font-weight: 600;
}

.status-value.active {
    color: #4ade80;
}

.status-value.maintenance {
    color: #f59e0b;
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    margin-left: 300px;
    padding: 2rem;
    min-height: calc(100vh - 100px);
}

.admin-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.admin-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    color: #ff69b4;
    font-size: 1rem;
    margin: 0;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.4);
}

.card-header {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

.card-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

.metric {
    text-align: center;
    margin-bottom: 1.5rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff1493, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    color: #ff69b4;
    font-size: 1rem;
    font-weight: 500;
}

.recent-photos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-photo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.recent-photo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.photo-info h4 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.photo-info span {
    color: #ff69b4;
    font-size: 0.8rem;
}

.recent-activity ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-activity li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

.recent-activity li:last-child {
    border-bottom: none;
}

.ad-spots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.ad-spot {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ad-spot.active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
}

.user-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-label {
    color: #ff69b4;
    font-weight: 500;
}

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

.quick-actions-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff69b4;
    border: 2px solid #ff69b4;
    backdrop-filter: blur(10px);
}

.action-btn.warning {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 2px;
}

/* Videos Section */
.videos-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    color: #4a5568;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    position: relative;
    overflow: hidden;
}

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

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff6b6b;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.video-content p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #a0aec0;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.about-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-visual {
    position: relative;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: statFloat 4s ease-in-out infinite;
}

.stat:nth-child(1) { animation-delay: 0s; }
.stat:nth-child(2) { animation-delay: 1s; }
.stat:nth-child(3) { animation-delay: 2s; }

@keyframes statFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ffa500, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    color: #4a5568;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ffa500, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.info-icon {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

/* Footer */
.seductive-footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(255, 20, 147, 0.3);
}

.footer-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: seductiveSpin 15s linear infinite;
}

.footer-flame,
.footer-heart,
.footer-star {
    color: #ff1493;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

@keyframes seductiveSpin {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    to { transform: rotate(360deg) scale(1); }
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

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

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff6b6b;
}

.modal-content h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.video-placeholder,
.gallery-image-large {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-player,
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

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

.gallery-description p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.success-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-text {
    font-weight: 500;
}

/* Video Modal Styles */
.video-modal .video-placeholder {
    min-height: 250px;
}

.video-modal .modal-content {
    max-width: 600px;
}

/* Gallery Modal Styles */
.gallery-modal .modal-content {
    max-width: 700px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-features {
        justify-content: center;
    }

    .videos-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-stats {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
@keyframes textGlow {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(255, 107, 107, 0.5)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 107, 107, 0.8)); }
    100% { filter: brightness(1) drop-shadow(0 0 5px rgba(255, 107, 107, 0.5)); }
}

/* Admin Panel Styles */
.admin-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-icon {
    font-size: 2rem;
}

.admin-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.admin-nav .nav-link {
    color: #a0aec0;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-nav .nav-link.active {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
}

.admin-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.logout-link:hover {
    background: #e53e3e;
}

.admin-container {
    display: flex;
    min-height: calc(100vh - 80px);
    background: #f8fafc;
}

.admin-sidebar {
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.sidebar-content {
    padding: 0 1.5rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.quick-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.admin-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #718096;
    font-size: 1rem;
}

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

.dashboard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.card-content {
    padding: 1.5rem;
}

.recent-photos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.recent-photo {
    flex: 1;
    min-width: 120px;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.recent-photo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.photo-info {
    padding: 0.75rem;
}

.photo-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
}

.photo-info span {
    font-size: 0.8rem;
    color: #718096;
}

.upload-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.photos-gallery {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-header h3 {
    color: #2d3748;
    font-size: 1.3rem;
}

.gallery-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #4a5568;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    border-color: transparent;
}

.gallery-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item-admin {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item-admin:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-image-admin {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gallery-image-admin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.gallery-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.edit-btn {
    background: #4299e1;
    color: white;
}

.edit-btn:hover {
    background: #3182ce;
    transform: scale(1.1);
}

.delete-btn {
    background: #e53e3e;
    color: white;
}

.delete-btn:hover {
    background: #c53030;
    transform: scale(1.1);
}

.gallery-info-admin {
    padding: 1rem;
}

.gallery-info-admin h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.gallery-info-admin p {
    color: #718096;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.category {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.date {
    color: #a0aec0;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #a0aec0;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.success-message {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.error-message {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

/* Responsive Admin */
@media (max-width: 1024px) {
    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        order: 2;
    }

    .admin-main {
        order: 1;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-filters {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .admin-header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid-admin {
        grid-template-columns: 1fr;
    }

    .recent-photos {
        flex-direction: column;
    }

    .recent-photo {
        min-width: auto;
    }
}

/* ===== YENİ EKLEMELER ===== */

/* Bot Mesajları */
.bot-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9), rgba(255, 105, 180, 0.9));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    padding: 1rem;
    max-width: 300px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.bot-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bot-avatar {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-content {
    flex: 1;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-content strong {
    color: #ffd700;
}

/* VIP Bot Elemanları */
.vip-bot-notice {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bot-icon {
    font-size: 3rem;
    color: #ff1493;
}

.bot-content {
    flex: 1;
}

.bot-content h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.bot-content p {
    color: #ff69b4;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.bot-steps {
    display: flex;
    gap: 0.5rem;
}

.step {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.step.active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border-color: #ff1493;
}

/* Hızlı VIP Erişim */
.quick-payment-access {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-icon {
    font-size: 1.5rem;
    color: #ffd700;
}

.quick-text {
    flex: 1;
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-btn {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Kayıt Teaser */
.content-teaser {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.teaser-icon {
    font-size: 3rem;
    color: #ff1493;
}

.teaser-content {
    flex: 1;
}

.teaser-content h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.teaser-content p {
    color: #ff69b4;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.teaser-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Link Stilleri */
.login-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.login-link {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.login-link.primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
}

.login-link.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

/* POS Paket Rozetleri */
.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-badge.recommended {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
}

.plan-badge.premium {
    background: linear-gradient(135deg, #c77dff, #9d4edd);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .vip-bot-notice {
        flex-direction: column;
        text-align: center;
    }

    .bot-steps {
        justify-content: center;
    }

    .quick-payment-access {
        flex-direction: column;
        text-align: center;
    }

    .content-teaser {
        flex-direction: column;
        text-align: center;
    }

    .login-links {
        flex-direction: column;
    }

    .plan-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}

/* ===== PAGINATION ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    background: rgba(255, 20, 147, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.3);
    color: #ff69b4;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-color: #ff1493;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

/* Video Preview Image */
.video-preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: #ff69b4;
    font-size: 1.2rem;
}

.loading-spinner i {
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

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

/* No Content */
.no-content {
    text-align: center;
    padding: 3rem;
    color: #666666;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ===== LOCK OVERLAY ===== */
.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    border: 2px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.lock-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #ff1493;
}

.lock-overlay span {
    font-size: 0.9rem;
    color: #ffffff;
}

.gallery-overlay.locked {
    opacity: 0.8;
}

/* ===== VIP MODAL STILLERI ===== */
.vip-modal-content {
    text-align: center;
    padding: 2rem;
}

.vip-modal-header h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-modal-header p {
    color: #ff69b4;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vip-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.vip-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.vip-feature i {
    font-size: 2rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    display: block;
}

.vip-feature span {
    color: #ffffff;
    font-weight: 600;
}

.vip-price {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: inline-block;
}

.vip-price .price {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.vip-price .period {
    color: #ffe4e1;
    font-size: 1.2rem;
}

.vip-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vip-signup-btn {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.vip-signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.vip-close-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vip-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== VIDEO PREVIEW TEASER ===== */
.video-preview-teaser {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
}

.video-preview-teaser .play-button-large {
    background: rgba(255, 20, 147, 0.8);
    color: white;
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.video-preview-teaser .play-button-large:hover {
    background: #ff1493;
    transform: scale(1.1);
}

.video-preview-teaser .lock-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

/* ===== MODAL STILLERI ===== */

/* Genel Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: modalFadeIn 0.3s ease-out forwards;
}

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

.modal-overlay[style*="display: flex"] {
    opacity: 1;
}

/* Genel Modal Content */
.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d1b1b);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-content h2 {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    text-align: center;
}

.modal-body {
    color: #ff69b4;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 20, 147, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ff1493;
    transform: scale(1.1);
}

/* Ad Modal Özel Stili */
.ad-modal {
    max-width: 600px;
}

.ad-modal h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

/* ===== FOTOĞRAF ve VİDEO DÜZENLEME MODAL STİLLERİ ===== */

/* Düzenleme Formu */
.edit-form {
    max-width: 600px;
    margin: 0 auto;
}

.current-photo, .current-video {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.current-photo h3, .current-video h3 {
    color: #ff1493;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.edit-form .form-group input,
.edit-form .form-group select,
.edit-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.edit-form .form-group input:focus,
.edit-form .form-group select:focus,
.edit-form .form-group textarea:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

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

.edit-form .form-group select {
    cursor: pointer;
}

.edit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.edit-form .form-group input[type="file"] {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 20, 147, 0.3);
    cursor: pointer;
}

.edit-form .form-group input[type="file"]:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
}

.edit-form .form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #ff69b4;
    font-style: italic;
}

/* Modal Butonları */
.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-width: 120px;
}

.modal-buttons .btn-primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
}

.modal-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.modal-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .edit-form {
        padding: 0 1rem;
    }

    .current-photo img, .current-video video {
        max-width: 100% !important;
        height: auto !important;
    }

    .edit-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== YENİ EKLEMELER - KADIN RESİMLERİ VE PROFESYONEL TASARIM ===== */

/* Kadın Model Resimleri İçin Özel Stiller */
.model-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 20, 147, 0.3);
    transition: all 0.4s ease;
    position: relative;
    margin: 0 auto 1rem;
}

.model-image:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    border-color: #ff1493;
}

.model-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    transition: all 0.3s ease;
}

.model-placeholder:hover {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
}

/* Kadın Model Kartları */
.model-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

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

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.4);
}

.model-info h4 {
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.model-info p {
    color: #ff69b4;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.model-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.model-stats span {
    background: rgba(255, 20, 147, 0.2);
    color: #ff1493;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

/* Featured Models Section */
.featured-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Mobil için 2x2 grid */
@media (min-width: 768px) {
    .featured-models {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-models {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Kadın Galerisi İçin Özel Overlay */
.content-preview {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    color: #ff69b4;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.content-preview small {
    color: #ffffff;
    opacity: 0.9;
}

/* Video Kalite ve Süre Rozetleri */
.video-duration,
.video-quality {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.video-duration {
    bottom: 8px;
    left: 8px;
}

.video-quality {
    bottom: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: 1px solid rgba(255, 20, 147, 0.6);
}

/* İyileştirilmiş Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.4);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff1493, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #ffffff;
    font-weight: 500;
}

/* İyileştirilmiş Footer */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #ff1493;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

/* Testimonial Kartları */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.4);
}

.testimonial-content {
    text-align: center;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.testimonial-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.author-name {
    color: #ff1493;
    font-weight: 700;
    font-size: 1rem;
}

.author-location {
    color: #ff69b4;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Paket Garanti Bölümü */
.pricing-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.guarantee-item i {
    color: #ff1493;
    font-size: 1.5rem;
}

.guarantee-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== GELİŞMİŞ RESPONSIVE TASARIM ===== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .featured-models {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        gap: 4rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .pricing-guarantee {
        gap: 1.5rem;
    }

    .testimonial-stars i {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobil */
    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .hero-features .feature-item {
        padding: 0.75rem 1.25rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    /* Featured Models Mobil */
    .featured-models {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .model-card {
        padding: 1.5rem;
        text-align: center;
    }

    .model-image {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
    }

    .model-info h4 {
        font-size: 1.1rem;
    }

    .model-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    /* Gallery Mobil */
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item,
    .video-item {
        max-width: 100%;
    }

    /* Testimonials Mobil */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    /* Pricing Mobil */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-features {
        padding: 0 1.5rem;
    }

    .pricing-btn {
        margin: 0 1.5rem 1.5rem;
        padding: 1rem;
        font-size: 1rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .guarantee-item {
        padding: 0.75rem 1.25rem;
    }

    /* Footer Mobil */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }

    .model-card {
        padding: 1.25rem;
    }

    .model-info h4 {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .pricing-card {
        margin: 0 auto;
    }

    .pricing-header {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features {
        padding: 0 1rem;
    }

    .pricing-btn {
        margin: 0 1rem 1rem;
    }

    .modal-content {
        margin: 0.5rem;
        padding: 1.25rem;
        max-width: calc(100vw - 1rem);
    }

    .modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .model-card {
        padding: 1rem;
    }

    .model-info h4 {
        font-size: 0.95rem;
    }

    .model-info p {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

/* ===== İYİLEŞTİRİLMİŞ LOADING VE ANIMASYONLAR ===== */

@keyframes enhancedFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in-enhanced {
    animation: enhancedFadeIn 0.8s ease-out both;
}

.fade-in-enhanced:nth-child(1) { animation-delay: 0.1s; }
.fade-in-enhanced:nth-child(2) { animation-delay: 0.2s; }
.fade-in-enhanced:nth-child(3) { animation-delay: 0.3s; }
.fade-in-enhanced:nth-child(4) { animation-delay: 0.4s; }
.fade-in-enhanced:nth-child(5) { animation-delay: 0.5s; }

/* İyileştirilmiş Scroll Efektleri */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Profesyonel Gradient Animasyonları */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background: linear-gradient(-45deg, #ff1493, #ff69b4, #ffd700, #ff1493);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

/* İyileştirilmiş Box Shadow'lar */
.professional-shadow {
    box-shadow:
        0 10px 30px rgba(255, 20, 147, 0.2),
        0 1px 8px rgba(255, 20, 147, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.professional-shadow-hover {
    transition: all 0.4s ease;
}

.professional-shadow-hover:hover {
    box-shadow:
        0 20px 50px rgba(255, 20, 147, 0.3),
        0 5px 15px rgba(255, 20, 147, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Modern Border Radius */
.modern-border {
    border-radius: 16px;
}

.modern-border-large {
    border-radius: 24px;
}

.modern-border-xl {
    border-radius: 32px;
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* İyileştirilmiş Button Hover Efektleri */
.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.4);
}

/* ===== TABLET OPTIMIZASYONU ===== */

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-content {
        gap: 3rem;
        padding: 0 2rem;
    }

    .featured-models {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== YÜKSEK ÇÖZÜNÜRLÜKLÜ EKRANLAR İÇİN ===== */

@media (min-width: 1400px) {
    .hero-title {
        font-size: 6rem;
    }

    .hero-content {
        gap: 8rem;
    }

    .hero-features {
        gap: 3rem;
    }

    .featured-models {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== MOBILE HEADER & UTILITIES ===== */
.highlight-text {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.main-header .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.main-nav .nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
}

.sticky-cta {
    padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
}

@media (max-width: 640px) {
    .main-header .header-content {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
    }
    .main-nav {
        justify-content: center;
        gap: 0.5rem;
    }
}