/* assets/css/style.css - Muñequitas OnlyFans Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #0e0f15;
    --bg-surface: #141620;
    --bg-card: #181a24;
    --bg-hover: #1e202d;
    --brand-primary: #00aff0;
    --brand-pink: #ff0055;
    --text-main: #ffffff;
    --text-muted: #8b92a4;
    --border-color: #1f212d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #252838;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Nav Item Style (OnlyFans Navigation - Vertical List Item) */
.nav-of-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 9999px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.2s ease;
    width: 100%;
}

.nav-of-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.nav-of-item.active {
    background: rgba(0, 175, 240, 0.12);
    color: var(--brand-primary);
}

.nav-of-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Buttons */
.btn-primary-custom {
    background: var(--brand-primary);
    color: #fff;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background: #0095cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
}

.btn-secondary-custom {
    background: #181a24;
    border: 1px solid var(--border-color);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-custom:hover {
    background: #202330;
    border-color: #383c50;
}

/* Forms */
.form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
}

@media (max-width: 640px) {
    .form-card {
        padding: 24px 18px;
        border-radius: 20px;
    }
}

.form-control-custom {
    background: #12131b;
    border: 1px solid #272a38;
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    width: 100%;
    outline: none;
    transition: all 0.2s;
}

.form-control-custom:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 12px rgba(0, 175, 240, 0.25);
}

/* Modal Styling */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 10000;
}

.modal-backdrop.hidden {
    display: none !important;
}

.modal-box {
    background: #181a24;
    border: 1px solid #272a38;
    border-radius: 28px;
    padding: 24px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    animation: modalScale 0.2s ease-out;
}

@keyframes modalScale {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Tip Presets */
.tip-preset-btn {
    background: #12131b;
    border: 1px solid #272a38;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.2s;
}

.tip-preset-btn:hover, .tip-preset-btn.active {
    border-color: var(--brand-pink);
    background: rgba(255, 0, 85, 0.1);
    color: var(--brand-pink);
}

/* Toast Messages */
#toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-msg {
    background: #181a24;
    border: 1px solid #272a38;
    border-left: 4px solid var(--brand-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Age Gate Backdrop */
.age-gate-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 9, 13, 0.96);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
}

.age-gate-box {
    background: #181a24;
    border: 1px solid #272a38;
    border-radius: 32px;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.badge-18 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 0, 85, 0.1);
    border: 2px solid var(--brand-pink);
    color: var(--brand-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px auto;
}
