:root {
    --primary: #f43f5e;
    --primary-hover: #fb7185;
    --primary-glow: rgba(244, 63, 94, 0.4);
    --secondary: #1e293b;
    --accent: #ff7f50;
    --bg-dark: #151515;
    --bg-card: #000000;
    --text-main: #fafafa;
    --text-muted: #a1a1aa;
    --glass: #000000;
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
    --nav-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar */
nav {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 2rem;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links img {
    height: 30px;
}

.nav-links a {
    font-weight: 400;
    transition: color 0.3s;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: var(--primary);
}

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

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title span {
    color: var(--primary);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Model Card */
.model-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--card-shadow);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.9), 0 0 20px -5px var(--primary-glow);
    border-color: var(--primary);
}

.model-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #000;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.model-info {
    padding: 1rem;
}

.model-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.model-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.platform-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Badges */
.badge-chaturbate {
    background: linear-gradient(135deg, #ff7f50, #ff6348);
    color: #fff;
}

.badge-stripchat {
    background: linear-gradient(135deg, #5352ed, #3742fa);
    color: #fff;
}

.viewers-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.viewers-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
}

.hd-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.page-link {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Model Profile */
.profile-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-thumb {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.stat-item b {
    color: var(--text-main);
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Age Verification Overlay */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-gate-modal {
    background: var(--bg-card);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.5s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-gate-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.age-gate-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.age-gate-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.age-gate-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-enter {
    background: var(--primary);
    color: white;
}

.btn-enter:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

.btn-exit {
    background: var(--glass);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.btn-exit:hover {
    background: var(--glass-border);
    color: #fff;
}

/* Hero Section */
.hero {
    background: #000000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero {
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Search Lightbox */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.search-input-group {
    position: relative;
    margin-bottom: 2rem;
}

.search-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    padding: 1rem 0;
    font-size: 2.5rem;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
}

.search-field::placeholder {
    color: var(--text-muted);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
    background: none;
    border: none;
}

.search-icon-btn {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.3s;
    background: none;
    border: none;
}

.search-icon-btn:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .search-field {
        font-size: 1.5rem;
    }
}

.iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 71, 87, 0.2);
    border: 1px solid var(--glass-border);
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

/* Tags */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tag-item {
    background: var(--glass);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: background 0.3s;
}

.tag-item:hover {
    background: var(--primary);
    color: white;
}

/* Footer */
.footer-margin {
    margin-top: 4rem;
}

.footer {
    background-color: #000;
    border-top: 1px solid var(--glass-border);
    padding: 6rem 2rem 4rem;
    color: var(--text-muted);
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.footer .nav li a {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.footer .nav li a:hover {
    color: var(--primary);
}

.footer .copyright {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer .txt {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 970px) {
    nav {
        padding: 0.8rem 1rem;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--primary);
        display: flex;
        justify-content: center;
    }

    .model-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .profile-header {
        grid-template-columns: 1fr;
    }

    .profile-info h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .profile-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .model-grid {
        grid-template-columns: 1fr;
    }
}

/* Ad Placements */
.bottom-adv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 2rem auto;
    max-width: 100%;
    padding: 0 1rem;
}

.bottom-adv .spot {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .bottom-adv {
        flex-direction: column;
        gap: 15px;
    }
}