
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header {
    background-color: #F47321;
    color: #fff;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header h1 a {
    color: #fff;
    text-decoration: none;
    font-weight: bold; /* Changed from 300 to bold */
    transition: color 0.3s ease;
}

header h1 a:hover {
    color: #FF9B5E;
}

nav ul {
    padding: 0;
    list-style-type: none;
    margin-top: 1rem;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF9B5E;
}

main {
    flex: 1;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

h2, h3 {
    color: #F47321;
}

.book-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.book-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.book-item a {
    text-decoration: none;
    color: inherit;
}

.book-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.book-title {
    font-size: 1.1em;
    margin: 10px;
    color: #F47321;
}

.book-author {
    font-size: 0.9em;
    margin: 0 10px 10px;
    color: #7f8c8d;
}

.book-details {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.book-details .book-cover {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .book-details .book-cover {
        float: left;
        margin-right: 30px;
        margin-bottom: 0;
    }
}

.book-details h2 {
    color: #F47321;
    margin-top: 0;
}

.book-details p {
    margin-bottom: 10px;
}

.book-summary {
    line-height: 1.8;
    margin-top: 20px;
}

.related-books {
    margin-top: 40px;
}

.related-books h3 {
    margin-bottom: 20px;
}

.related-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.related-book-item {
    text-align: center;
}

.related-book-cover {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
    background-color: #F47321;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .book-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .book-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}



/* Dark mode styles */
html.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

html.dark-mode body {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

html.dark-mode header,
html.dark-mode footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
}

html.dark-mode header h1 a,
html.dark-mode header nav ul li a {
    color: #f0f0f0;
}

html.dark-mode header nav ul li a:hover {
    color: #F47321;
}

html.dark-mode .book-item,
html.dark-mode .book-details {
    background-color: #2c2c2c;
    color: #f0f0f0;
}

html.dark-mode .book-title,
html.dark-mode .book-author {
    color: #f0f0f0;
}

html.dark-mode .category-tag {
    background-color: #F47321;
    color: #f0f0f0;
}

html.dark-mode .category-tag:hover {
    background-color: #FF9B5E;
}

/* Dark mode toggle button */
#darkModeToggle {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#darkModeToggle:hover {
    background-color: #555;
}

html.dark-mode #darkModeToggle {
    background-color: #f0f0f0;
    color: #333;
}

html.dark-mode #darkModeToggle:hover {
    background-color: #ddd;
}

/* Related book summary preview */
.book-summary-preview {
    font-size: 0.9em;
    margin-top: 10px;
    color: #666;
}

html.dark-mode .book-summary-preview {
    color: #aaa;
}

.profile-media {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.media-item {
    margin: 0;
    text-align: center;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.media-item figcaption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

html.dark-mode .media-item figcaption {
    color: #aaa;
}

/* Add these styles to your existing CSS file */

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.profile-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.profile-image-container {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.profile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-username {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.profile-card a {
    text-decoration: none;
    color: inherit;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Dark mode styles */
html.dark-mode .profile-card {
    background-color: #333333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

html.dark-mode .profile-username {
    color: #f0f0f0;
}

.location-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.location-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.location-tag:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

html.dark-mode .location-tag {
    background-color: #3a3a3a;
    color: #f0f0f0;
}

html.dark-mode .location-tag:hover {
    background-color: #4a4a4a;
}

.age-group-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.age-group-item {
    background-color: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}

.age-group-item a {
    text-decoration: none;
    color: #333;
}

.age-group-name {
    font-weight: bold;
}

.age-group-count {
    font-size: 0.9em;
    color: #666;
}

html.dark-mode .age-group-item {
    background-color: #3a3a3a;
}

html.dark-mode .age-group-item a {
    color: #f0f0f0;
}

html.dark-mode .age-group-count {
    color: #aaa;
}

.profile-count {
    font-size: 0.8em;
    color: #666;
}

html.dark-mode .profile-count {
    color: #aaa;
}

.quiz-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.quiz-progress {
    height: 6px;
    background-color: #e0e0e0;
    margin-bottom: 30px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #F47321;
    width: 0;
    transition: width 0.3s ease;
}

.quiz-question {
    margin-bottom: 30px;
}

.quiz-question h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.2em;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}

.quiz-option.selected {
    background-color: #F47321;
    border-color: #D15600;
    color: white;
}

.quiz-option input[type="radio"] {
    display: none;
}

#quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-nav-button, .quiz-submit {
    background-color: #F47321;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.quiz-nav-button:hover, .quiz-submit:hover {
    background-color: #D15600;
}

.quiz-results {
    text-align: center;
    padding: 30px;
    background-color: #e8f4fd;
    border-radius: 8px;
    margin-top: 30px;
}

.quiz-results h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4em;
}

/* Dark mode styles */
html.dark-mode .quiz-container {
    background-color: #333333;
}

html.dark-mode .quiz-progress {
    background-color: #444;
}

html.dark-mode .quiz-question h4 {
    color: #f0f0f0;
}

html.dark-mode .quiz-option {
    background-color: #444444;
    border-color: #555555;
    color: #f0f0f0;
}

html.dark-mode .quiz-option:hover {
    background-color: #555555;
}

html.dark-mode .quiz-option.selected {
    background-color: #F47321;
    color: #f0f0f0;
}

html.dark-mode .quiz-results {
    background-color: #333333;
    color: #f0f0f0;
}

html.dark-mode .quiz-results h4 {
    color: #3498db;
}

.read-more-btn {
    background-color: #F47321;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1em;
    font-weight: bold;
}

.read-more-btn:hover {
    background-color: #D15600;
}

html.dark-mode .read-more-btn {
    background-color: #D15600;
}

html.dark-mode .read-more-btn:hover {
    background-color: #F47321;
}

.profile-biography {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.biography-content {
    transition: max-height 0.5s ease;
    overflow: hidden;
    max-height: 100px; /* Adjust this value based on your design */
}

.model-bio-text {
    margin: 0;
}

.model-bio-text.truncate {
    position: relative;
}

.model-bio-text.truncate::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.read-more-container {
    text-align: center;
    margin-top: 20px;
}

.read-more-btn,
.read-less-btn {
    background-color: #F47321;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1em;
    font-weight: bold;
}

.read-more-btn:hover,
.read-less-btn:hover {
    background-color: #D15600;
}

html.dark-mode .model-bio-text.truncate::after {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0), rgba(26, 26, 26, 1));
}

html.dark-mode .read-more-btn,
html.dark-mode .read-less-btn {
    background-color: #F47321;
}

html.dark-mode .read-more-btn:hover,
html.dark-mode .read-less-btn:hover {
    background-color: #D15600;
}

/* Content locker styles */
.content-locker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
}

.locker-content {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.locker-header {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.logo-container {
    margin-bottom: 15px;
}

.gexcam-logo {
    height: 40px;
    width: auto;
}

.locker-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: #212529;
    margin: 0 0 5px;
}

.subtitle {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.locker-body {
    padding: 20px;
}

.instruction {
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 15px;
}

.btn-primary, .btn-secondary, .open-again-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary, .open-again-btn {
    background-color: #6c757d;
    color: white;
}

.btn-primary:hover, .btn-secondary:hover, .open-again-btn:hover {
    filter: brightness(90%);
}

.btn-icon {
    height: 20px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.info-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
}

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

.blurred-content {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.verification-progress {
    text-align: center;
    margin-bottom: 20px;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

.verifying-message {
    font-size: 16px;
    color: #495057;
}

.progress-bar {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #007bff;
    transition: width 0.5s ease;
}

.locker-footer {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

.locker-footer p {
    font-size: 12px;
    color: #6c757d;
    margin: 5px 0;
}

.terms-link {
    margin-top: 10px;
    font-size: 12px;
}

.terms-link a {
    color: #007bff;
    text-decoration: none;
}

.terms-link a:hover {
    text-decoration: underline;
}

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

@media (max-width: 480px) {
    .locker-content {
        width: 95%;
    }

    .locker-header h2 {
        font-size: 20px;
    }

    .btn-primary, .btn-secondary {
        font-size: 14px;
    }
}

.progress {
    width: 0;
    height: 100%;
    background-color: #4a90e2;
    transition: width 0.5s ease;
}

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

/* Mobile-specific styles */
@media (max-width: 768px) {
    .chaturbate-embed-container {
        padding-top: 220%; /* Increase height for mobile */
    }

    .content-locker {
        height: auto;
        min-height: 100%;
    }

    .locker-content {
        padding: 30px;
        width: 95%;
        height: auto;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content-locker h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content-locker p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .content-locker button {
        padding: 15px 30px;
        font-size: 18px;
        margin: 0 5px 20px;
    }

    .verify-icon {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .loader {
        width: 60px;
        height: 60px;
        margin: 30px auto;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .chaturbate-embed-container {
        padding-top: 250%; /* Further increase height for very small screens */
    }

    .content-locker h3 {
        font-size: 22px;
    }

    .content-locker p {
        font-size: 16px;
    }

    .content-locker button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .verify-icon {
        font-size: 36px;
    }
}
.chaturbate-embed iframe {


    width: 100%;

    max-width: 100%;
}

/* Profile tags styles */
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin-top: 20px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tag:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

html.dark-mode .tag {
    background-color: #3a3a3a;
    color: #f0f0f0;
}

html.dark-mode .tag:hover {
    background-color: #4a4a4a;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #4a90e2;
    transition: width 0.5s ease;
}

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

/* Add responsive styles as needed */

.content-locker h3 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #4a90e2;
}

.content-locker h3 .username {
    color: white;
}

.content-locker p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-locker button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 0 15px 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-locker button:hover {
    background-color: #3a7bd5;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.content-locker button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}

.loader {
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid #4a90e2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

.verify-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px; /* Center the icon horizontally and add bottom margin */
    fill: #4a90e2; /* Use the same color as the site header */
}

@media (max-width: 768px) {
    .verify-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .verify-icon {
        width: 36px;
        height: 36px;
    }
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #4a90e2;
    transition: width 0.5s ease;
}

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

/* Add responsive styles as needed */
.profile-tags {
    margin-top: 30px;
    margin-bottom: 30px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tag:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.verifying-message {
    background-color: rgba(255, 0, 0, 0.418); /* Slight red background */
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.free-signup-message {
    background-color: rgba(0, 255, 0, 0.473); /* Slight green background */
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.account-question {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.open-again-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.open-again-btn:hover {
    background-color: #3a7bd5;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.highlight-text {
    background-color: #ffd700;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.big-text {
    font-size: 1.3em;
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
}

html.dark-mode .highlight-text {
    background-color: #4a90e2;
    color: #fff;
}

.pulsating-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}