:root {
    --accent: #ff0000;
    --bg: #050505;
    --card-bg: #121212;
    --text-muted: #888;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* --- Navbar --- */
.navbar { 
    height: 80px; display: flex; justify-content: space-between; 
    padding: 0 4%; align-items: center; border-bottom: 1px solid #1a1a1a;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000;
}
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; text-transform: uppercase; }
.logo span { color: var(--accent); }
.nav-links a { color: var(--text-muted); text-decoration: none; margin-right: 25px; font-weight: 700; font-size: 0.8rem; transition: 0.3s; }
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.btn-login { color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 2px; text-transform: uppercase; }
.btn-join { background: var(--accent); color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 900; padding: 11px 22px; border-radius: 2px; text-transform: uppercase; }

/* --- Grid Layout (FORCED 4 COLUMNS) --- */
.container { 
    padding: 40px 4%; 
}

.video-grid {
    display: grid;
    /* This line forces 4 equal columns */
    grid-template-columns: repeat(4, 1fr); 
    gap: 35px 15px;
    transition: all 0.5s ease;
}

/* --- Video Card & Hover Preview --- */
.video-card { 
    cursor: pointer; 
    transition: var(--transition);
    position: relative;
}

/* Focus Effect: Dim others on hover */
.video-grid:has(.video-card:hover) .video-card:not(:hover) {
    opacity: 0.25;
    filter: grayscale(0.8);
}

.media-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 cinematic ratio */
    background: #000;
    overflow: hidden;
    border-radius: 2px;
}

.thumb {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.preview-video { 
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

/* The Hover Step Action */
.video-card:hover {
    transform: translateY(-8px);
}

.video-card:hover .preview-video { 
    opacity: 1; 
}

.video-card:hover .thumb {
    transform: scale(1.1); /* Subtle zoom effect behind video */
}

/* --- Details --- */
.details { padding: 12px 0; }
.details h3 { 
    font-size: 0.85rem; 
    font-weight: 900; 
    letter-spacing: 0.5px; 
    margin-bottom: 4px; 
    text-transform: uppercase;
    color: #eee;
}
.details p { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.5px; }
.details strong { color: #fff; }

.badge {
    position: absolute; bottom: 8px; right: 8px; z-index: 5;
    background: rgba(0,0,0,0.85); padding: 2px 6px; font-size: 10px; font-weight: 900; 
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
}

/* --- Responsive Fix --- */
@media (max-width: 1200px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
/* --- Modern Premium Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 60px 0 100px; /* Space above and below */
}

.pagination a, .pagination .dots {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1a1a1a;
    background: #0a0a0a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

/* The Active Page (Red Pill) */
.pagination a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Hover Effect */
.pagination a:hover:not(.active):not(.disabled) {
    color: #fff;
    border-color: #444;
    background: #111;
    transform: translateY(-2px);
}

/* Next/Prev specific style (Wider) */
.pagination a.prev, .pagination a.next {
    width: auto;
    padding: 0 25px;
    font-size: 0.65rem;
    border-color: #222;
}

.pagination a.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    filter: grayscale(1);
}

.pagination .dots {
    border: none;
    background: transparent;
}
/* --- Join Page Styles --- */
.join-page {
    background: radial-gradient(circle at top, #1a1a1a 0%, #050505 100%);
}

.join-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
    text-align: center;
}

.join-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.join-header h1 span { color: var(--accent); }

.join-header p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Pricing Cards */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Keeps cards aligned at bottom */
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card.featured {
    background: #151515;
    border: 1px solid var(--accent);
    padding: 60px 30px; /* Taller card */
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.price span { font-size: 1rem; color: #444; }

.billing-info { font-size: 0.8rem; color: #555; margin-bottom: 25px; }

.features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
}

.features li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #bbb;
}

.features li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: 900;
}

.btn-select {
    display: block;
    text-decoration: none;
    background: #222;
    color: #fff;
    padding: 15px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.3s;
}

.featured .btn-select {
    background: var(--accent);
}

.btn-select:hover {
    filter: brightness(1.2);
}

.secure-footer {
    margin-top: 50px;
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 1px;
}
/* --- Login Page Specific Styles --- */
.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Add a dark background image with an overlay */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?w=1600');
    background-size: cover;
    background-position: center;
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-box {
    background: #0f0f0f;
    padding: 50px 40px;
    border: 1px solid #222;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.login-box h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 30px 0 10px;
    letter-spacing: 1px;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 35px;
}

/* Form Styling */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 900;
    color: #555;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--accent);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    margin-bottom: 30px;
}

.remember-me {
    color: #888;
    cursor: pointer;
}

.forgot-pass {
    color: var(--text-muted);
    text-decoration: none;
}

.forgot-pass:hover {
    color: #fff;
}

.btn-login-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 2px;
}

.btn-login-submit:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #555;
}

.login-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
/* --- Model Page Specifics --- */

/* Hide slides by default */
.model-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    transition: opacity 0.3s ease;
    z-index: 2;
    overflow: hidden;
}

/* Show slides on hover */
.model-card:hover .model-slides {
    opacity: 1;
}

/* The Rotation Animation */
.model-slides img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes them scroll horizontally */
    animation: slideRotation 6s infinite steps(1); 
}

@keyframes slideRotation {
    0%   { transform: translateX(0%); }
    33%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}
/* --- 6-Column Grid for Models --- */
.models-container {
    padding: 40px 4%; 
}

.model-grid-6 {
    display: grid;
    /* Forces exactly 6 columns */
    grid-template-columns: repeat(6, 1fr); 
    gap: 30px 15px; /* Balanced gaps for 6 columns */
}

/* Adjusting Card Details for 6-column size */
.model-card .details h3 {
    font-size: 0.8rem; 
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.model-card .details p {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Adjusting Card Details for small size */
.model-card .details h3 {
    font-size: 0.7rem; /* Smaller font to prevent text wrapping */
    letter-spacing: 0.5px;
}

.model-card .details p {
    font-size: 0.6rem; /* Very small subtext */
}

/* Ensure the rotation stays fast and clean */
.model-card .media-box {
    padding-top: 56.25%; /* Keeps 16:9 ratio even when tiny */
}
/* If you have 4 images, use these percentages: 0, 25, 50, 75, 100 */
/* --- Payment Page Styles --- */
.payment-page {
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.payment-wrapper {
    display: flex;
    width: 900px;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.payment-main {
    flex: 1.5;
    padding: 50px;
}

.payment-summary {
    flex: 1;
    background: #141414;
    padding: 50px;
    border-left: 1px solid #1a1a1a;
}

.payment-main h2 {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 30px 0;
    letter-spacing: 1px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section label {
    display: block;
    font-size: 0.65rem;
    font-weight: 900;
    color: #555;
    margin-bottom: 8px;
}

.form-section input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    outline: none;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container img {
    position: absolute;
    right: 10px;
}

.row {
    display: flex;
    gap: 20px;
}

.btn-pay {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px;
    font-weight: 900;
    margin-top: 20px;
    cursor: pointer;
}

/* Summary Details */
.payment-summary h3 { font-size: 0.8rem; margin-bottom: 30px; }
.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    margin-top: 15px;
}
.benefits-list {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #555;
}
.secure-notice {
    font-size: 0.65rem;
    color: #333;
    text-align: center;
    margin-top: 20px;
}
/* --- Age Gate Page Styles --- */
.age-gate-page {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.age-gate-wrapper {
    max-width: 600px;
    padding: 20px;
}

.logo-large {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.age-content h1 {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #fff;
}

.age-content p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444 !important;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-enter-site {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-enter-site:hover {
    background: #fff;
    color: #000;
}

.btn-exit-site {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-exit-site:hover {
    color: #fff;
}

.age-footer {
    margin-top: 60px;
    font-size: 0.6rem;
    color: #222;
}
/* --- Ultra-Premium Age Gate --- */
.age-gate-body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #000;
    /* Using a dark, moody background image */
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1514565131-fce0801e5785?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.age-gate-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.logo-premium {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.logo-premium span { color: var(--accent); }

.divider {
    height: 2px;
    width: 40px;
    background: var(--accent);
    margin: 0 auto 30px;
}

.age-gate-card h1 {
    font-size: 1.1rem;
    letter-spacing: 5px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.age-gate-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.age-button-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-gate-enter {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 20px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    transition: all 0.4s;
}

.btn-gate-enter:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.btn-gate-exit {
    color: #444;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: 0.3s;
}

.btn-gate-exit:hover {
    color: #888;
}

.age-legal-notice {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.age-legal-notice p {
    font-size: 0.65rem;
    color: #333;
    letter-spacing: 1px;
}