/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a2e; /* Fallback color */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/backgroundsexy.jpg') top left / cover no-repeat;
    background-position: 20% 0; /* Adjust horizontal position to keep woman on left */
    filter: blur(4px);
    -webkit-filter: blur(4px);
    z-index: -1;
    transform: scale(1.05); /* Slightly zoom in to avoid hard edges from blur */
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    width: 35px;
    height: auto;
    filter: invert(1) drop-shadow(1px 1px 3px rgba(0,0,0,0.4));
}

.nav-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-signup {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.main-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.shorts-button-container {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.btn-gold-premium {
    background: linear-gradient(45deg, #ffd700, #ffb347, #ff8c00);
    color: #fff;
    border: 2px solid #ffd700;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-gold-premium::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.5s;
}

.btn-gold-premium:hover::before {
    left: 100%;
}

.btn-gold-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    border-color: #fff;
    background: linear-gradient(45deg, #ffed4a, #ffd700, #ffb347);
}

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

.btn-gold-premium span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    /* LCP Optimization */
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
}

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

/* Content Section */
.content-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

.content-card {
    max-width: 380px;
    min-width: 320px;
    width: 100%;
    height: 420px;
    background: rgba(20, 20, 35, 0.95);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Special styling for Nuvista-branded content */
.content-card.nuvista-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.2));
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.content-card.nuvista-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5);
    border-color: #fff;
}

.content-card.nuvista-premium::before {
    content: '🔥 PREMIUM';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.content-card.nuvista-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 193, 7, 0.3));
    border: 2px solid #ffc107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.content-card.nuvista-gold:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.5);
    border-color: #fff;
}

.content-card.nuvista-gold::before {
    content: '⭐ GOLD';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ffc107, #ffd700);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.content-card.nuvista-elite {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.3), rgba(52, 58, 64, 0.3));
    border: 2px solid #6c757d;
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.3);
}

.content-card.nuvista-elite:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 117, 125, 0.5);
    border-color: #fff;
}

.content-card.nuvista-elite::before {
    content: '💎 ELITE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #6c757d, #495057);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.content-card.nuvista-vip {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3), rgba(255, 107, 107, 0.3));
    border: 2px solid #dc3545;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.content-card.nuvista-vip:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.5);
    border-color: #fff;
}

.content-card.nuvista-vip::before {
    content: '🔥 VIP';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.content-card.nuvista-signature {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(0, 123, 255, 0.3));
    border: 2px solid #0d6efd;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.content-card.nuvista-signature:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.5);
    border-color: #fff;
}

.content-card.nuvista-signature::before {
    content: '🌟 SIGNATURE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #0d6efd, #007bff);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.content-card.nuvista-exclusive {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.3), rgba(138, 43, 226, 0.3));
    border: 2px solid #6f42c1;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.content-card.nuvista-exclusive:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(111, 66, 193, 0.5);
    border-color: #fff;
}

.content-card.nuvista-exclusive::before {
    content: '🔥 EXCLUSIVE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #6f42c1, #8a2be2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Special styling for cumshot content cards with blurred background */
.content-card[data-category="cumshot"] {
    position: relative;
    overflow: hidden;
}

.content-card[data-category="cumshot"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/cumshot.jpg') center center / cover no-repeat;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
    z-index: -2;
}

.content-card[data-category="cumshot"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content-card[data-category="cumshot"]:hover::before {
    transform: scale(1.2);
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.content-card[data-category="cumshot"] .content-image {
    background: transparent;
}

.content-card[data-category="cumshot"] .content-image::before,
.content-card[data-category="cumshot"] .content-image::after {
    background: transparent;
}

.content-card[data-category="cumshot"] .content-image .fa-play {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.content-card[data-category="cumshot"] .content-info {
    background: transparent;
}

.content-card[data-category="cumshot"] .content-title,
.content-card[data-category="cumshot"] .content-description,
.content-card[data-category="cumshot"] .content-meta {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.content-card[data-category="cumshot"] .tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

/* Amateur category card with blurred background image */
.content-card[data-category="amateur"] {
    position: relative;
    overflow: hidden;
}

.content-card[data-category="amateur"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/nuvistaporn.jpg') center center / cover no-repeat;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
    z-index: -2;
}

.content-card[data-category="amateur"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content-card[data-category="amateur"]:hover::before {
    transform: scale(1.2);
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.content-card[data-category="amateur"] .content-image {
    background: transparent;
}

.content-card[data-category="amateur"] .content-image::before,
.content-card[data-category="amateur"] .content-image::after {
    background: transparent;
}

.content-card[data-category="amateur"] .content-image .fa-play {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.content-card[data-category="amateur"] .content-info {
    background: transparent;
}

.content-card[data-category="amateur"] .content-title,
.content-card[data-category="amateur"] .content-description,
.content-card[data-category="amateur"] .content-meta {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.content-image {
    width: 100%;
    height: 240px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    transition: filter 0.3s;
}

.content-card:hover .content-image img {
    filter: brightness(0.85) blur(1px);
}

.content-image .fa-play {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: #fff;
    opacity: 0.92;
    background: rgba(0,0,0,0.32);
    border-radius: 50%;
    padding: 18px 22px 18px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: background 0.2s;
}

.content-image .duration-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
}

.content-image .quality-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
}

.content-card:hover .fa-play {
    background: rgba(255,255,255,0.18);
    color: #ffd700;
}

.content-info {
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    background: rgba(20, 20, 35, 0.95);
    z-index: 2;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.10);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.content-meta .views-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.content-meta .date-badge {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.content-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.watch-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
}

.watch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Special tag styling for Nuvista content */
.tag.nuvista {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
}

.category-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
    color: #fff;
}

.category-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Video Modal Specific Styles */
.video-modal-content {
    max-width: 90%;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2% auto;
}

.video-container {
    color: #fff;
}

.video-container h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffd700;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#videoPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.video-tags .tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
}

.close:hover {
    color: #ffd700;
}

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

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #fff;
    font-weight: 500;
}

.form-group input {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.auth-switch {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.auth-switch a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

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

.load-more {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(20, 20, 35, 0.98);
        backdrop-filter: blur(20px);
        z-index: 2000;
        padding: 1.5rem 2rem;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.active {
        display: flex !important;
    }
    .nav-menu .nav-link {
        width: 100%;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        font-size: 1rem;
        display: block;
        color: #fff;
        text-decoration: none;
        background: transparent;
    }
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: rgba(255, 107, 107, 0.2);
        transform: translateX(5px);
        color: #ffd700;
    }
    .nav-auth {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: flex-start;
        margin-top: 0.5rem;
    }
    .nav-container {
        flex-direction: row;
        align-items: center;
        position: relative;
    }
    .nav-toggle {
        display: flex;
        margin-left: auto;
        z-index: 2100;
        position: relative;
    }
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .btn-login, .btn-signup {
        width: 90vw;
        margin: 0.2rem 0;
    }
    .user-welcome {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .main-buttons {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .main-buttons .btn {
        width: 280px;
        max-width: 90vw;
        margin: 0 auto;
    }
    
    .shorts-button-container {
        max-width: 280px;
        width: 90vw;
        justify-content: center;
        margin: 0 auto;
    }
    
    .btn-gold-premium {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .category-card {
        padding: 1rem;
        min-height: 120px;
    }
    
    .category-card i {
        font-size: 2rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.8rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .video-modal-content {
        max-width: 95%;
        width: 95%;
        margin: 5% auto;
    }
    
    .video-container h2 {
        font-size: 1.5rem;
    }
    
    .video-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-buttons .btn {
        width: 250px;
        max-width: 85vw;
        margin: 0 auto;
    }
    
    .shorts-button-container {
        max-width: 250px;
        width: 85vw;
        justify-content: center;
        margin: 0 auto;
    }
    
    .btn-gold-premium {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .category-card {
        padding: 0.8rem;
        min-height: 100px;
    }
    
    .category-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .category-card p {
        font-size: 0.7rem;
    }
    
    .video-modal-content {
        padding: 1rem;
    }
    
    .video-container h2 {
        font-size: 1.3rem;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.loading-spinner::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

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

/* Active Category Card */
.category-card.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.category-card.active i {
    color: #333;
    transform: scale(1.2);
}

.category-card.active h3 {
    color: #333;
}

.category-card.active p {
    color: #555;
}

/* Category Card Hover Effects */
.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.category-card.active:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Show All Button */
.show-all-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.show-all-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.show-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
    background: linear-gradient(45deg, #45a049, #4CAF50);
}

.show-all-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Iframe Content Styling */
.content-card.iframe-content {
    border: 2px solid #ffd700;
    position: relative;
}

.content-card.iframe-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.iframe-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.content-image {
    position: relative;
    width: 100%;
    height: 180px;
    min-height: 120px;
    max-height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
} 

@media (max-width: 600px) {
    .content-card {
        max-width: 99vw;
        min-width: 0;
        aspect-ratio: 16/10;
    }
    .content-image {
        height: 160px;
        min-height: 90px;
        max-height: 200px;
    }
    .content-title {
        font-size: 1.18rem;
    }
    .content-description {
        font-size: 1rem;
    }
} 

@media (max-width: 430px) {
    html, body {
        font-size: 15px;
    }
    .container, .nav-container {
        padding: 0 6px;
    }
    .navbar {
        padding: 0.5rem 0;
    }
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 10px 0;
    }
    .btn, .btn-primary, .btn-secondary, .btn-login, .btn-signup {
        font-size: 1rem;
        padding: 14px 0;
        width: 100%;
        border-radius: 18px;
        margin-bottom: 10px;
    }
    
    .main-buttons .btn {
        width: 220px;
        max-width: 80vw;
        margin: 0 auto;
    }
    
    .shorts-button-container {
        max-width: 220px;
        width: 80vw;
        justify-content: center;
        margin: 0 auto;
    }
    
    .btn-gold-premium {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero {
        padding: 80px 0 40px;
        min-height: 60vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-img {
        border-radius: 12px;
    }
    .content-section {
        padding: 30px 0 20px 0;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .content-card {
        max-width: 99vw;
        min-width: 0;
        aspect-ratio: 16/10;
        border-radius: 12px;
        margin: 0 auto 1.2rem auto;
    }
    .content-image {
        height: 140px;
        min-height: 80px;
        max-height: 160px;
        border-radius: 12px 12px 0 0;
    }
    .content-title {
        font-size: 1.1rem;
    }
    .content-description {
        font-size: 0.95rem;
    }
    .content-info {
        padding: 0.7rem 0.7rem 1rem 0.7rem;
    }
    .btn, .btn-primary, .btn-secondary {
        min-width: 90vw;
        max-width: 100vw;
        margin: 0.5rem auto;
        display: block;
    }
    .modal-content, .video-modal-content {
        width: 99vw;
        max-width: 99vw;
        padding: 1rem 0.5rem;
        border-radius: 12px;
    }
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-section h3, .footer-section h4 {
        font-size: 1.1rem;
    }
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 1rem;
    }
    .show-all-btn {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        border-radius: 18px;
    }
    .category-card {
        min-height: 80px;
        padding: 0.7rem;
    }
    .category-card h3 {
        font-size: 1rem;
    }
    .category-card p {
        font-size: 0.8rem;
    }
    .category-card i {
        font-size: 1.3rem;
    }
    .loading-spinner {
        font-size: 1rem;
        padding: 20px;
    }
} 

/* --- MODERN RESPONSIVE NAVBAR & MENU --- */
@media (max-width: 950px) {
  .nav-container {
    max-width: 100vw;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
    min-height: 56px;
  }
  .nav-container {
    flex-wrap: wrap;
    padding: 0 4px;
  }
  .nav-logo h2 {
    font-size: 1.3rem;
  }
  .nav-menu {
    display: none !important;
    width: 100vw;
    left: 0;
    right: 0;
    top: 56px;
    position: fixed;
    background: rgba(30,30,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .nav-link {
    font-size: 1.1rem;
    padding: 18px 0 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link:hover,
  .nav-link:active {
    background: rgba(255, 107, 107, 0.2);
    transform: translateX(5px);
    color: #ffd700;
  }
  .nav-auth {
    flex-direction: column;
    width: 100vw;
    align-items: stretch;
    margin: 0;
    padding: 0 0 10px 0;
    background: rgba(30,30,30,0.98);
    z-index: 2001;
  }
  .btn-login, .btn-signup {
    width: 92vw;
    margin: 0.3rem auto;
    font-size: 1.1rem;
    padding: 16px 0;
    border-radius: 20px;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
    z-index: 2100;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0.2rem 0;
    min-height: 48px;
  }
  .nav-logo h2 {
    font-size: 1.1rem;
  }
  .nav-link {
    font-size: 1rem;
    padding: 15px 0 15px 12px;
  }
  .btn-login, .btn-signup {
    font-size: 1rem;
    padding: 14px 0;
    border-radius: 16px;
  }
}
@media (max-width: 430px) {
  .navbar {
    padding: 0.1rem 0;
    min-height: 44px;
  }
  .nav-logo h2 {
    font-size: 1rem;
  }
  .nav-link {
    font-size: 0.98rem;
    padding: 13px 0 13px 8px;
  }
  .btn-login, .btn-signup {
    font-size: 0.85rem;
    padding: 6px 0;
    border-radius: 7px;
    min-width: 65vw;
    max-width: 85vw;
    margin-bottom: 5px;
  }
}
@media (max-width: 390px) {
  .navbar {
    min-height: 40px;
  }
  .nav-logo h2 {
    font-size: 0.92rem;
  }
  .nav-link {
    font-size: 0.92rem;
    padding: 11px 0 11px 6px;
  }
  .btn-login, .btn-signup {
    font-size: 0.8rem;
    padding: 5px 0;
    border-radius: 6px;
    min-width: 60vw;
    max-width: 80vw;
    margin-bottom: 4px;
  }
}
@media (max-width: 414px) and (max-height: 920px) {
  .btn-login, .btn-signup {
    font-size: 0.95rem;
    padding: 9px 0;
    border-radius: 10px;
    min-width: 82vw;
    max-width: 96vw;
    margin-bottom: 8px;
  }
}
/* Hamburger menü açıldığında menü ve auth butonları üstte ve tam genişlikte olacak şekilde optimize edildi. */ 

/* Responsive for video.html platform buttons and layout */
@media (max-width: 900px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 6px;
  }
  .video-player-section, .video-info-section {
    border-radius: 12px;
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 2vw;
  }
  .video-player-section, .video-info-section {
    border-radius: 10px;
    padding: 8px 0;
  }
  #platformButtons {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: stretch !important;
    margin-bottom: 12px !important;
  }
  #platformButtons .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 13px 0;
    border-radius: 10px;
  }
  .video-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }
  .action-btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 13px 0;
    border-radius: 10px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .video-container {
    padding: 0 1vw;
    gap: 8px;
  }
  .video-player-section, .video-info-section {
    border-radius: 8px;
    padding: 6px 0;
  }
  #platformButtons .btn {
    font-size: 1rem;
    padding: 10px 0;
    border-radius: 8px;
  }
  .action-btn {
    font-size: 1rem;
    padding: 10px 0;
    border-radius: 8px;
  }
}
@media (max-width: 430px) {
  .video-container {
    padding: 0 0.5vw;
    gap: 6px;
  }
  .video-player-section, .video-info-section {
    border-radius: 6px;
    padding: 4px 0;
  }
  #platformButtons .btn {
    font-size: 0.95rem;
    padding: 8px 0;
    border-radius: 7px;
  }
  .action-btn {
    font-size: 0.95rem;
    padding: 8px 0;
    border-radius: 7px;
  }
}
@media (max-width: 390px) {
  #platformButtons .btn {
    font-size: 0.9rem;
    padding: 7px 0;
    border-radius: 6px;
  }
  .action-btn {
    font-size: 0.9rem;
    padding: 7px 0;
    border-radius: 6px;
  }
} 

@media (max-width: 600px) {
  .nav-auth {
    flex-direction: row !important;
    gap: 8px !important;
    width: auto !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    position: static !important;
  }
  .btn-login, .btn-signup {
    font-size: 0.92rem;
    padding: 7px 14px;
    border-radius: 8px;
    min-width: unset;
    max-width: 45vw;
    margin-bottom: 0;
    margin-top: 0;
    box-shadow: none;
    display: inline-block;
  }
  .nav-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    width: 36px;
    height: 36px;
    background: rgba(30,30,30,0.7);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  .nav-toggle .bar {
    width: 22px;
    height: 3px;
    margin: 3px 0;
  }
  .nav-menu {
    top: 56px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    background: rgba(30,30,30,0.98);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-radius: 0 0 16px 16px;
    padding: 0.5rem 0 0.7rem 0;
  }
  .nav-menu.active {
    display: flex !important;
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-link {
    font-size: 1rem;
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid #222;
    width: 100vw;
    background: none;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
} 

/* Modern minimal tab bar for video.html embed links */
.platform-tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 18px;
  overflow-x: auto;
  padding: 0.3rem 0.2rem;
  background: none;
  border-radius: 10px;
  scrollbar-width: none;
}
.platform-tabs::-webkit-scrollbar {
  display: none;
}
.platform-tabs .btn {
  background: rgba(30,30,30,0.85);
  color: #fff;
  border: none;
  border-bottom: 2.5px solid transparent;
  border-radius: 0;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 22px;
  min-width: 90px;
  transition: all 0.2s;
  box-shadow: none;
  outline: none;
  margin: 0;
  white-space: nowrap;
}
.platform-tabs .btn.active,
.platform-tabs .btn:focus {
  background: #222;
  color: #ffd700;
  border-bottom: 2.5px solid #ffd700;
}
@media (max-width: 900px) {
  .platform-tabs {
    gap: 0.3rem;
    padding: 0.2rem 0.1rem;
  }
  .platform-tabs .btn {
    font-size: 1rem;
    padding: 8px 14px;
    min-width: 70px;
  }
}
@media (max-width: 600px) {
  .platform-tabs {
    gap: 0.2rem;
    padding: 0.1rem 0.1rem;
    justify-content: flex-start;
  }
  .platform-tabs .btn {
    font-size: 0.97rem;
    padding: 7px 10px;
    min-width: 60px;
  }
} 

.related-title-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
} 