/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-glass: rgba(26, 26, 26, 0.85);
    --gold: #c9a227;
    --gold-light: #e8d268;
    --gold-dark: #9a7b1a;
    --red-accent: #8b1a1a;
    --red-deep: #5c0f0f;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(201, 162, 39, 0.4);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Flash Messages ===== */
.flash-message {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 9999;
    animation: flashIn 0.4s ease, flashOut 0.4s ease 3.5s forwards;
    backdrop-filter: blur(10px);
}

.flash-success { background: rgba(39, 174, 96, 0.9); color: #fff; }
.flash-error { background: rgba(192, 57, 43, 0.9); color: #fff; }
.flash-info { background: rgba(201, 162, 39, 0.9); color: #000; }

@keyframes flashIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes flashOut {
    to { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-dot {
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Dropdown */
.lang-dropdown,
.user-dropdown {
    position: relative;
}

.lang-btn,
.user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
}

.lang-btn:hover,
.user-btn:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

.lang-menu,
.user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 150px;
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow);
    z-index: 1001;
}

.lang-menu.show,
.user-menu.show {
    display: flex;
    animation: menuIn 0.2s ease;
}

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

.lang-option,
.user-menu a {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option:hover,
.lang-option.active,
.user-menu a:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.lang-option.active {
    font-weight: 600;
}

.user-menu .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 4px 12px;
}

.badge.approved {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.badge.pending {
    background: rgba(241, 196, 15, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.btn-login {
    padding: 8px 20px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-gold {
    padding: 10px 22px;
    background: var(--gold);
    color: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

/* ===== Floating Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--bg-primary);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.5);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
}

.chat-panel.show {
    display: flex;
    animation: chatSlideUp 0.3s ease;
}

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

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
}

.chat-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.chat-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.chat-info p {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-close {
    background: none;
    border: none;
    color: var(--bg-primary);
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(0,0,0,0.1);
}

.chat-body {
    padding: 16px;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-secondary);
}

.chat-message {
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.chat-message.received {
    background: var(--bg-card);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.sent {
    background: var(--gold);
    color: var(--bg-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message p {
    margin-bottom: 4px;
}

.chat-time {
    font-size: 0.7rem;
    opacity: 0.6;
}

.chat-footer {
    padding: 12px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.chat-input-name {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.chat-input-name:focus {
    outline: none;
    border-color: var(--gold);
}

.chat-input-row {
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.chat-input:focus {
    outline: none;
    border-color: var(--gold);
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-send:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

/* ===== Hero Profile Banner (OnlyFans Style) ===== */
.profile-banner {
    position: relative;
    padding-top: 70px;
}

.profile-banner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    opacity: 0.6;
}

.profile-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, var(--bg-primary) 100%);
}

.profile-header {
    position: relative;
    margin-top: -60px;
    padding: 0 24px 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.profile-header-inner {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.profile-verified {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 0.75rem;
    border: 2px solid var(--bg-primary);
}

.profile-header-info {
    flex: 1;
    padding-bottom: 8px;
}

.profile-header-name {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.profile-header-handle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.profile-header-bio {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 12px;
}

.profile-header-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.profile-stat-item {
    text-align: center;
}

.profile-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-header-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.profile-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.profile-btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.profile-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

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

.profile-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.profile-social-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.profile-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.profile-social-row a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Unified Plans Cards ===== */
.plans-section {
    background: var(--gradient-dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.plan-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.15);
}

.plan-card.featured::before {
    transform: scaleX(1);
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
}

.plan-features .feature-locked {
    color: var(--text-muted);
}

.plan-features .feature-locked i {
    color: var(--text-muted);
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== Masonry Gallery ===== */
.gallery-section {
    background: var(--bg-primary);
}

.masonry-grid {
    column-count: 3;
    column-gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.masonry-item:hover {
    transform: scale(1.02);
}

.masonry-item img {
    width: 100%;
    border-radius: var(--radius);
    transition: var(--transition);
}

.masonry-item:hover img {
    filter: brightness(0.7);
}

.masonry-item .masonry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item .masonry-overlay i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.masonry-item .masonry-overlay .masonry-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.masonry-locked {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    aspect-ratio: 3/4;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border);
    position: relative;
}

.masonry-locked i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.masonry-locked p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== Latest Drops Section ===== */
.latest-drops {
    background: var(--bg-secondary);
    padding: 80px 20px;
}

.latest-drops-header {
    text-align: center;
    margin-bottom: 40px;
}

.latest-drops-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.latest-preview-card {
    max-width: 700px;
    margin: 0 auto 32px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.latest-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.latest-preview-overlay h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.latest-preview-overlay p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.latest-preview-overlay .btn-outline {
    margin-top: 16px;
}

/* ===== Content Page ===== */
.content-section {
    padding-top: 100px;
    min-height: 100vh;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.content-card .card-thumb {
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.content-card .card-thumb img,
.content-card .card-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card .card-thumb .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: var(--transition);
}

.content-card .card-thumb .play-btn i {
    font-size: 3rem;
    color: var(--gold);
    transition: var(--transition);
}

.content-card:hover .card-thumb .play-btn i {
    transform: scale(1.1);
}

.content-card .card-info {
    padding: 20px;
}

.content-card .card-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.content-card .card-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.content-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-card .card-meta .tier-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

.content-card .card-meta .lock-icon {
    color: var(--text-muted);
}

/* ===== Profile Page ===== */
.profile-hero {
    min-height: auto;
    padding-top: 80px;
}

.profile-card-full {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-banner-img-full {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.6;
}

.profile-body {
    padding: 0 32px 32px;
    position: relative;
}

.profile-avatar-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-card);
    margin-top: -70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ===== Subscribe Page ===== */
.subscribe-section {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.subscribe-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.subscribe-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.gift-card-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 20px;
}

.gift-card-upload:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.03);
}

.gift-card-upload i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.gift-card-upload p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.payment-method {
    padding: 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.payment-method span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.payment-method input {
    display: none;
}

/* ===== Contact Section ===== */
.contact-section {
    padding-top: 100px;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-panel,
.contact-info-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Messages ===== */
.messages-section {
    min-height: 100vh;
    padding-top: 100px;
    background: var(--bg-secondary);
}

.messages-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 20px;
}

.message-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.message-item:hover {
    border-color: var(--border-hover);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.message-sender {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

.message-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.message-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

.message-reply {
    background: rgba(201, 162, 39, 0.05);
    border-left: 3px solid var(--gold);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 12px;
}

.message-reply-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ===== Login ===== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--red-deep) 0%, var(--bg-primary) 60%);
    padding: 20px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.login-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form .btn-primary {
    margin-top: 8px;
}

.login-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.login-links a {
    color: var(--gold);
    font-size: 0.85rem;
}

.login-links a:hover {
    text-decoration: underline;
}

/* ===== Dashboard ===== */
.dashboard-section {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--bg-secondary);
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
}

.sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 90px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.sidebar-menu i {
    width: 20px;
    text-align: center;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
}

.stat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.stat-card-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.panel-title {
    font-size: 1.1rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table th,
.data-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.data-table td {
    color: var(--text-secondary);
}

.data-table tr:hover td {
    color: var(--text-primary);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-pending {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

.status-approved {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.status-rejected {
    background: rgba(192, 57, 43, 0.15);
    color: #e74c3c;
}

.status-replied {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.btn-small {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-approve {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.btn-approve:hover {
    background: #27ae60;
    color: #fff;
}

.btn-reject {
    background: rgba(192, 57, 43, 0.2);
    color: #e74c3c;
}

.btn-reject:hover {
    background: #e74c3c;
    color: #fff;
}

.btn-view {
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
}

.btn-view:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-reply {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.btn-reply:hover {
    background: #3498db;
    color: #fff;
}

/* ===== Upload Area ===== */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 16px;
}

.upload-area:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.03);
}

.upload-area i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.upload-area p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===== Locked Content ===== */
.locked-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 600px;
    margin: 40px auto;
}

.locked-message i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.locked-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.locked-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.tab {
    padding: 10px 18px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab:hover {
    color: var(--text-secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* ===== Coming Soon ===== */
.coming-soon {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.coming-soon i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
    animation: pulse 2s ease infinite;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== Animations ===== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

@keyframes flashIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes flashOut {
    to { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .masonry-grid {
        column-count: 2;
    }
    .profile-header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .profile-header-info {
        text-align: center;
    }
    .profile-header-bio {
        margin-left: auto;
        margin-right: auto;
    }
    .profile-header-actions {
        justify-content: center;
    }
    .profile-social-row {
        justify-content: center;
    }
    .profile-header-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .masonry-grid {
        column-count: 2;
        column-gap: 10px;
    }
    .masonry-item {
        margin-bottom: 10px;
    }
    .section {
        padding: 48px 16px;
    }
    .chat-panel {
        width: calc(100vw - 32px);
        right: -8px;
    }
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    .profile-banner-img {
        height: 180px;
    }
    .profile-avatar-img {
        width: 100px;
        height: 100px;
    }
    .profile-header {
        padding: 0 16px 20px;
    }
    .login-card,
    .contact-form-panel,
    .contact-info-panel {
        padding: 24px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-methods {
        grid-template-columns: 1fr;
    }
    .profile-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    .data-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .latest-preview-card {
        aspect-ratio: 4/3;
    }
    .latest-preview-overlay h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 2;
    }
    .plan-card {
        padding: 24px;
    }
    .plan-price {
        font-size: 2rem;
    }
    .profile-header-stats {
        gap: 16px;
    }
    .profile-stat-value {
        font-size: 1rem;
    }
    .nav-actions {
        gap: 8px;
    }
    .btn-gold {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
    .lang-btn {
        padding: 4px 8px;
    }
    .chat-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}
