/* Core design tokens for BustedWhores theme */
:root {
    --primary: #276fdb;
    --primary-hover: #1e5bb8;
    --accent: #ffea00;
    --accent-hover: #ffffff;
    --bg-dark: #0f111a;
    --bg-card: #1c1f2e;
    --text-main: #ffffff;
    --text-muted: #8a8f9d;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* General reset and base styling */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--primary-hover);
}

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

.clear::after {
    content: "";
    display: table;
    clear: both;
}

/* Top Links Banner */
.top-links {
    background: #000000;
    border-bottom: 2px solid var(--primary);
    padding: 8px 20px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
}

.top-links a {
    color: var(--accent);
    font-family: Verdana, Georgia, serif;
    font-weight: bold;
    margin: 0 10px;
}

.top-links a:hover {
    color: var(--accent-hover);
}

/* Header & Navigation */
header {
    background-color: #141622;
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 30px;
    position: relative;
    z-index: 1000;
}

.logo {
    float: left;
    margin-top: 5px;
}

.logo img {
    display: block;
    height: auto;
}

nav {
    float: left;
    margin-left: 35px;
}

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

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #cdd3eb;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
}

nav ul li a:hover, nav ul li.active a {
    color: #ffffff;
    background-color: rgba(39, 111, 219, 0.15);
}

/* Search Bar Area */
.searchIcon {
    float: right;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background 0.2s, color 0.2s;
    margin-top: 3px;
    color: #cdd3eb;
}

.searchIcon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.searchIcon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.searchfull {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #161826;
    border-bottom: 2px solid var(--primary);
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.searchArea {
    max-width: 600px;
    margin: 0 auto;
}

.searchArea form {
    display: flex;
    width: 100%;
}

.searchArea input[type="text"] {
    flex: 1;
    padding: 12px 20px;
    background: #0f111a;
    border: 1px solid var(--glass-border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.searchArea input[type="submit"] {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.searchArea input[type="submit"]:hover {
    background: var(--primary-hover);
}

/* Models Grid & Cards */
.models {
    padding: 20px 0;
}

.box {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.box:hover {
    transform: translateY(-5px);
    border-color: rgba(39, 111, 219, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.box img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.box span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #ffffff;
    padding: 18px 12px 14px 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    transition: color 0.2s;
}

.box:hover span {
    color: var(--accent);
}

/* Section Title styling */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 30px 0 20px 0;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

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

/* Show All button container */
.getAccess {
    text-align: center;
    margin: 40px 0;
}

.getAccess a {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(39, 111, 219, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.getAccess a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 111, 219, 0.5);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 8px;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: #cdd3eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(39, 111, 219, 0.3);
}

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

.profile-thumb {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.profile-info h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

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

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

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

/* Iframe and Embedding elements */
.iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
    background: #000000;
}

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

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

.tag-item {
    background: var(--glass);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cdd3eb;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease-in-out;
}

.tag-item:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Footer layout */
footer {
    background-color: #0b0c10;
    border-top: 1px solid var(--glass-border);
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.fLogo {
    margin-bottom: 25px;
}

.fLogo img {
    opacity: 0.8;
    height: auto;
}

.fLinks {
    margin-bottom: 20px;
    font-weight: 500;
}

.fLinks a {
    color: #cdd3eb;
    text-decoration: none;
    margin: 0 10px;
}

.fLinks a:hover {
    color: var(--primary);
}

footer p {
    margin: 0;
    line-height: 1.8;
}

/* Age Verification Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-modal {
    background: var(--bg-card);
    max-width: 500px;
    width: 100%;
    padding: 45px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    animation: modalIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.age-gate-logo {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.age-gate-logo span {
    color: var(--primary);
}

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

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

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

.age-gate-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
}

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

.btn-enter:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 111, 219, 0.4);
}

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

.btn-exit:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Button UI elements */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(39, 111, 219, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 111, 219, 0.5);
    color: #ffffff;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

