:root {
    --bg-dark: #050402;
    --bg-panel: #0a0805;
    --gold-main: #d4af37;
    --gold-light: #f9d976;
    --gold-dark: #aa7700;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-gold: rgba(212, 175, 55, 0.3);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    /* De perfecte 'Sexy Black' achtergrond zonder blokjes */
    background-image: url('sexy_black_fixed.jpg');
    background-color: #000;
    background-size: cover;
    background-position: center;
    filter: brightness(1) contrast(1.1); /* Nu lekker scherp en helder */
    z-index: -1;
    animation: backgroundSlowZoom 30s infinite alternate ease-in-out;
}

@keyframes backgroundSlowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Typography */
h1, h2, h3, .logo-text {
    font-family: 'Cinzel', serif;
}

.gold-text {
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
    text-align: center;
    line-height: 1;
}
.nav-logo .title {
    font-size: 18px;
    letter-spacing: 2px;
}
.nav-logo .subtitle {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold-main);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-gold {
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
    color: black;
    border: none;
}
.btn-gold:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--gold-main);
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    padding: 20px 50px 80px;
    min-height: 70vh;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-top: 0;
}

.hero-logo-img {
    width: 300px;
    height: 300px;
    margin-top: 0;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    background-image: url('logo_clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-right {
    flex: 1.2;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    margin-left: 50px;
}

.welcome-text {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold-main);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.hero-title span {
    font-size: 72px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: var(--bg-panel);
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    color: var(--gold-main);
}

.feature-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Bottom Section (Join) */
.join-section {
    display: flex;
    padding: 80px 50px;
    align-items: center;
}

.join-left {
    flex: 1;
}

.join-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold-main);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.join-subtitle::before, .join-subtitle::after {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--gold-main);
}

.join-title {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.join-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 400px;
}

.join-right {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.model-placeholder {
    width: 200px;
    height: 300px;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-main);
    opacity: 0.5;
    background: rgba(212, 175, 55, 0.05);
}

/* About Us Page Styles */
.about-page {
    background-image: linear-gradient(rgba(5, 4, 2, 0.8), rgba(5, 4, 2, 0.95)), url('main_bg.png');
}

.page-header {
    text-align: center;
    padding: 80px 20px 40px;
}
.page-header h1 {
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.page-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    align-items: center;
}
.about-content.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.about-text p {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.sexy-img, .sexy-img-placeholder {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

.perk-list {
    margin-top: 40px;
}
.perk-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.perk-item i {
    font-size: 28px;
    color: var(--gold-main);
    margin-top: 5px;
}
.perk-item strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: white;
    margin-bottom: 5px;
}
.perk-item span {
    font-size: 14px;
    color: var(--text-muted);
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    width: 90%;
    max-width: 1000px;
    height: 600px;
    background: #0d0d0d;
    border: 1px solid var(--gold-main);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.2);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold-main);
}

.modal-left {
    flex: 1;
    position: relative;
    background-image: url('sexy_black_fixed.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.modal-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.modal-info {
    position: relative;
    z-index: 2;
}

.modal-logo-small {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.modal-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-main);
    margin-bottom: 20px;
}

.modal-usp {
    list-style: none;
}

.modal-usp li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
}

.modal-usp li i {
    color: var(--gold-main);
}

.modal-right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
}

.form-toggle {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.form-toggle button {
    background: none;
    border: none;
    color: #666;
    padding-bottom: 15px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.form-toggle button.active {
    color: var(--gold-main);
}

.form-toggle button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-main);
}

.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.modal-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
}

.input-group input:focus {
    border-color: var(--gold-main);
    background: rgba(255,255,255,0.08);
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 30px;
    text-decoration: none;
}

.modal-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 30px;
}

.social-login {
    text-align: center;
}

.social-login p {
    font-size: 0.7rem;
    color: #444;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--gold-main);
    color: var(--gold-main);
}

.terms {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 20px;
}

.terms a {
    color: var(--gold-main);
}

@media (max-width: 900px) {
    .modal-left { display: none; }
    .modal-container { max-width: 500px; }
}
/* Next-Level Modal Enhancements */
.modal-right {
    background: linear-gradient(135deg, #1a0505 0%, #0d0d0d 100%); /* Deep Crimson to Black */
}

.modal-offer {
    display: inline-block;
    padding: 5px 15px;
    background: #ff3b3b;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-offer.gold-badge {
    background: var(--gold-main);
    color: black;
}

.social-login-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-main);
}

.divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.divider span {
    position: relative;
    background: #150a0a;
    padding: 0 15px;
    color: #444;
    font-size: 0.7rem;
    font-weight: bold;
}

.pulse-gold {
    animation: pulseGold 2s infinite;
    font-weight: bold;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #d4af37, #f1c40f) !important;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
/* Content Protection */
img, .sexy-img, .modal-left, .hero-logo-img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none; /* Maakt rechtsklikken op de afbeelding onmogelijk */
}

/* Zorg dat knoppen en inputs nog wel werken */
button, input, textarea, select, a {
    pointer-events: auto !important;
}
/* --- Mobile OnlyFans Vibe Enhancements --- */

/* Bottom Navigation Bar (App Experience) */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: none; /* Only visible on mobile */
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 3000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 0.6rem;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-item i {
    font-size: 1.4rem;
}

.mobile-nav-item.active {
    color: var(--gold-main);
}

.mobile-nav-item.center-btn {
    background: var(--gold-main);
    color: black;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    justify-content: center;
    margin-top: -20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Feed Cards (OnlyFans Style) */
.feed-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 15px;
}

.feed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
}

.card-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    object-fit: cover;
}

.card-user-info h5 {
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

.card-user-info span {
    font-size: 0.7rem;
    color: #666;
}

.card-media {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.card-actions {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-left {
    display: flex;
    gap: 20px;
}

.action-btn {
    background: none;
    border: none;
    color: #bbb;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-btn span {
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.action-btn:hover {
    color: var(--gold-main);
}

.tip-btn {
    color: var(--gold-main);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none; /* Hide standard links on mobile */
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        align-items: center;
        padding: 30px;
        margin-top: 20px;
    }

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

    .hero-logo-img {
        width: 150px;
        height: 150px;
    }

    .pricing-grid {
        padding-bottom: 80px; /* Space for bottom nav */
    }

    footer {
        padding-bottom: 100px;
    }
}
/* --- Latin Empire X: Next Level Metamorphosis --- */

/* Top Stories Section */
.stories-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    margin-bottom: 30px;
}
.stories-container::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome */

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 85px;
    cursor: pointer;
}

.story-ring {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #d4af37, #f1c40f, #ff3b3b);
    position: relative;
}

.story-ring.live::after {
    content: 'LIVE';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3b3b;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    border: 2px solid #000;
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
}

.story-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #eee;
}

/* Premium Model Card (Webcam Style) */
.model-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.live-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.live-preview img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.live-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent 30%, rgba(0,0,0,0.8) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.live-badge {
    background: rgba(255, 59, 59, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.live-badge span {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.live-chat-preview {
    max-width: 250px;
}

.chat-msg {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    border-left: 3px solid var(--gold-main);
}

.chat-msg b { color: var(--gold-main); margin-right: 5px; }

/* Global Metamorphosis Tweaks */
body {
    background: radial-gradient(circle at top, #1a0a0a 0%, #000 100%);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 900px) {
    .model-spotlight { grid-template-columns: 1fr; }
    .live-preview img { height: 400px; }
}
/* --- Enhanced OnlyFans Vibe (Pop more) --- */

/* Subscription Header for Models */
.profile-promo {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-main);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-main);
    margin-bottom: 5px;
}

.promo-info p {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Post Interaction Buttons */
.interaction-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 10px 15px;
    display: flex;
    gap: 25px;
}

.interaction-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.interaction-item:hover, .interaction-item.active {
    color: var(--gold-main);
}

/* Price Badge on Feed */
.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    color: var(--gold-main);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    border: 1px solid var(--gold-main);
}
/* --- Readability & Contrast Overhaul --- */

/* Brighten all descriptive text */
p, .hero-desc, .join-desc, .card-user-info span, .promo-info p, .pricing-header p, .footer p {
    color: #e0e0e0 !important; /* Brighter silver-white instead of dull grey */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Add shadow for better legibility against dark backgrounds */
}

/* Brighten secondary headings */
h3, h4, .card-type, .welcome-text {
    color: #ffffff !important;
}

/* Ensure features and lists are crystal clear */
.feature-content p, .card-features li {
    color: #f0f0f0 !important;
}

/* Fix specific grey text requested by user */
.pricing-header p {
    color: #ffffff !important;
    font-weight: 500;
}

/* Brighten interaction buttons */
.interaction-item, .action-btn {
    color: #bbbbbb !important;
}

.interaction-item:hover {
    color: var(--gold-main) !important;
}
/* --- Aggressive Professional Contrast Overhaul --- */

/* 1. Eliminate all dull greys - Everything must be CRISP WHITE or GOLD */
p, span, li, small, .hero-desc, .join-desc, .card-user-info span, .promo-info p, .pricing-header p, .footer p, .feature-content p, .card-features li {
    color: #ffffff !important; /* Pure White */
    opacity: 1 !important;
    font-weight: 500 !important; /* Medium weight for better definition */
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* 2. Enhanced Golden Text for Premium feel */
.gold-text, .welcome-text, label, .card-type, .price-tag, .interaction-item.active, .tip-btn {
    color: #ffd700 !important; /* Brilliant Gold */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* Subtle golden glow */
    font-weight: 600 !important;
}

/* 3. Icons should also be bright and clear */
i {
    color: #ffffff !important;
    opacity: 1 !important;
}

.gold-text i, .feature-icon i, .interaction-item.active i, .tip-btn i {
    color: #ffd700 !important;
}

/* 4. Pricing Cards Clarity */
.card-price {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.card-price span {
    color: #ffd700 !important;
    font-size: 1.1rem !important;
}

/* 5. Footer visibility */
.footer p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #ffd700 !important; /* Make copyright also gold/bright */
}

/* 6. Interaction bar icons */
.interaction-item {
    color: #ffffff !important;
    font-weight: 600;
}
