/* OnlyRooms - Complete Stylesheet */
:root {
  --bg: #0b0b0f; --bg-card: #131318; --bg-elevated: #1a1a22;
  --bg-sidebar: #101014; --accent: #00d4ff; --accent2: #7c3aed;
  --gradient: linear-gradient(135deg, #00d4ff, #7c3aed, #a855f7);
  --text: #f0f0f5; --text2: #8a8a9a; --text3: #555566;
  --border: rgba(255, 255, 255, 0.06); --radius: 16px; --radius-sm: 8px;
  --radius-full: 9999px; --font: 'Inter', sans-serif;
  --header-h: 64px; --sidebar-w: 260px; --transition: 0.2s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--text); background: var(--bg); min-height: 100vh; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text3); border-radius: 3px; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 3rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.125rem; }
.header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: rgba(11, 11, 15, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1400px; margin: 0 auto; height: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.logo-icon { font-size: 1.2em; }
.header-nav { display: flex; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text2); transition: color var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-size: 15px; font-weight: 600; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition); white-space: nowrap; user-select: none; }
.btn-primary { background: var(--gradient); color: #fff; border: none; box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0, 212, 255, 0.35); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid rgba(255, 255, 255, 0.15); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border: none; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-block { width: 100%; }
.footer { border-top: 1px solid var(--border); padding: 48px 24px; margin-top: 80px; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-brand { font-size: 1.1rem; font-weight: 700; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text2); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text3); }
.hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 30% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 70% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 50%); pointer-events: none; }
.hero-content { position: relative; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.2); border-radius: var(--radius-full); font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; line-height: 1.1; }
.hero h1 .gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; color: var(--text2); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 56px; }
.hero-stat { text-align: center; }
.hero-stat-value { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: 13px; color: var(--text3); margin-top: 4px; }
.section { padding: 80px 24px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text2); font-size: 1rem; }
.creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.creator-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.3s ease; position: relative; }
.creator-card:hover { transform: translateY(-4px); border-color: rgba(0, 212, 255, 0.15); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); }
.card-cover { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-elevated); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.creator-card:hover .card-cover img { transform: scale(1.05); }
.card-cover-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, var(--bg-card), transparent); pointer-events: none; }
.card-avatar { position: absolute; bottom: -28px; left: 16px; width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--bg-card); overflow: hidden; background: var(--bg-elevated); z-index: 2; }
.card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.card-badge { position: absolute; top: 12px; right: 12px; padding: 4px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; backdrop-filter: blur(8px); z-index: 2; }
.card-badge.vip { background: rgba(124, 58, 237, 0.7); color: #fff; }
.card-badge.new { background: rgba(0, 212, 255, 0.7); color: #fff; }
.card-badge.hot { background: rgba(239, 68, 68, 0.7); color: #fff; }
.card-body { padding: 36px 16px 16px; }
.card-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.card-name .verified { color: var(--accent); font-size: 14px; }
.card-desc { font-size: 13px; color: var(--text2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; line-height: 1.5; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.card-tag { padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 500; background: rgba(255, 255, 255, 0.05); color: var(--text2); }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.card-stat { font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 4px; }
.card-price { font-size: 13px; font-weight: 600; color: var(--accent); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 40px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s ease; }
.step-card:hover { border-color: rgba(0, 212, 255, 0.15); transform: translateY(-2px); }
.step-icon { width: 64px; height: 64px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: rgba(0, 212, 255, 0.08); border-radius: 20px; font-size: 28px; }
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.explore-layout { max-width: 1400px; margin: 0 auto; padding: 24px; display: flex; gap: 32px; min-height: calc(100vh - var(--header-h)); }
.explore-sidebar { width: var(--sidebar-w); flex-shrink: 0; position: sticky; top: calc(var(--header-h) + 24px); align-self: flex-start; max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; }
.sidebar-section { margin-bottom: 32px; }
.sidebar-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 12px; padding: 0 12px; }
.sidebar-list { display: flex; flex-direction: column; gap: 2px; }
.sidebar-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text2); cursor: pointer; transition: all var(--transition); }
.sidebar-item:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.sidebar-item.active { background: rgba(0, 212, 255, 0.08); color: var(--accent); }
.sidebar-item-icon { font-size: 18px; width: 24px; text-align: center; }
.sidebar-item-count { margin-left: auto; font-size: 12px; color: var(--text3); }
.explore-main { flex: 1; min-width: 0; }
.filter-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.search-input { flex: 1; min-width: 200px; padding: 10px 16px 10px 40px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 14px; color: var(--text); transition: border-color var(--transition); background-image: url("data:image/svg+xml,%3Csvg xmlns=%'http://www.w3.org/2000/svg%' width=%'16%' height=%'16%' fill=%'%238a8a9a%' viewBox=%'0 0 16 16%'%3E%3Cpath d=%'M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z%'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 14px center; }
.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text3); }
.filter-select { padding: 10px 36px 10px 14px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 13px; color: var(--text); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns=%'http://www.w3.org/2000/svg%' width=%'12%' height=%'12%' fill=%'%238a8a9a%' viewBox=%'0 0 16 16%'%3E%3Cpath d=%'M8 11L3 6h10l-5 5z%'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: calc(100% - 12px) center; }
.filter-select:focus { border-color: var(--accent); }
.filter-select option { background: var(--bg-elevated); color: var(--text); }
.category-strip { display: none; overflow-x: auto; gap: 8px; padding: 0 0 16px; margin-bottom: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-chip { flex-shrink: 0; padding: 8px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text2); cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.category-chip:hover, .category-chip.active { background: rgba(0, 212, 255, 0.1); border-color: var(--accent); color: var(--accent); }
.results-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-size: 14px; color: var(--text2); }
.load-more-wrap { text-align: center; padding: 40px 0; }
.profile-cover { position: relative; height: 300px; overflow: hidden; background: var(--bg-elevated); }
.profile-cover img { width: 100%; height: 100%; object-fit: cover; }
.profile-cover-blur { width: 100%; height: 100%; object-fit: cover; filter: blur(12px) brightness(0.6); transform: scale(1.1); }
.profile-cover-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, var(--bg), transparent); }
.profile-header { max-width: 900px; margin: -60px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.profile-top { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 20px; }
.profile-avatar { width: 120px; height: 120px; border-radius: 50%; border: 4px solid var(--bg); overflow: hidden; background: var(--bg-elevated); flex-shrink: 0; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-size: 1.8rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.profile-name .verified { color: var(--accent); font-size: 20px; }
.profile-type { font-size: 14px; color: var(--accent); margin-top: 2px; }
.profile-stats { display: flex; gap: 32px; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.profile-stat { text-align: center; }
.profile-stat-value { font-size: 1.3rem; font-weight: 700; }
.profile-stat-label { font-size: 12px; color: var(--text3); margin-top: 2px; }
.profile-bio { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.profile-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab { padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--text3); cursor: pointer; border-bottom: 2px solid transparent; transition: all var(--transition); }
.tab:hover { color: var(--text2); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.photo-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--bg-elevated); border-radius: 4px; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-blur-personal img { filter: blur(8px); transform: scale(1.1); }
.photo-blur-exclusive img { filter: blur(16px); transform: scale(1.15); }
.photo-blur-personal:hover img, .photo-blur-exclusive:hover img { transform: scale(1.15); }
.photo-lock-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.3); gap: 6px; }
.photo-lock-icon { font-size: 28px; opacity: 0.9; }
.photo-lock-badge { padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; }
.photo-lock-badge.premium { background: rgba(0, 212, 255, 0.6); color: #fff; }
.photo-lock-badge.vip { background: rgba(124, 58, 237, 0.6); color: #fff; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.about-item { padding: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.about-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.about-value { font-size: 15px; font-weight: 600; }
.traits-wrap { margin-top: 24px; }
.traits-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text2); }
.traits-list { display: flex; flex-wrap: wrap; gap: 8px; }
.trait-tag { padding: 6px 14px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.15); color: var(--accent); }
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fadeIn 0.2s ease; }
.modal { width: 100%; max-width: 440px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; text-align: center; animation: scaleIn 0.25s ease; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 18px; color: var(--text3); cursor: pointer; transition: all var(--transition); }
.modal-close:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal h3 { margin-bottom: 12px; }
.modal p { color: var(--text2); font-size: 14px; line-height: 1.6; margin-bottom: 28px; }
.modal .btn { margin: 0 auto; }
.spinner-wrap { display: flex; align-items: center; justify-content: center; padding: 60px 0; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
.spinner-sm { width: 20px; height: 20px; border-width: 2px; }
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { color: var(--text2); margin-bottom: 8px; }
.empty-state p { color: var(--text3); font-size: 14px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease; }
.slide-up { animation: slideUp 0.5s ease; }
@media (max-width: 1024px) { .explore-sidebar { width: 220px; } .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } .hero-stats { gap: 32px; } }
@media (max-width: 768px) { :root { --header-h: 56px; } h1 { font-size: 2rem; } h2 { font-size: 1.5rem; } .header-nav { display: none; } .hero { min-height: 60vh; padding: 60px 20px; } .hero-stats { gap: 24px; flex-wrap: wrap; } .hero-stat-value { font-size: 1.5rem; } .hero-buttons { flex-direction: column; align-items: center; } .steps-grid { grid-template-columns: 1fr; gap: 16px; } .step-card { padding: 28px 20px; } .explore-layout { flex-direction: column; padding: 16px; gap: 0; } .explore-sidebar { display: none; } .category-strip { display: flex; } .filter-bar { gap: 8px; } .search-input { min-width: 0; } .creators-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; } .profile-cover { height: 200px; } .profile-header { padding: 0 16px; } .profile-top { flex-direction: column; align-items: flex-start; gap: 12px; } .profile-avatar { width: 96px; height: 96px; margin-top: -48px; } .profile-name { font-size: 1.4rem; } .profile-stats { gap: 20px; flex-wrap: wrap; } .profile-actions { flex-direction: column; } .profile-actions .btn { width: 100%; } .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; } .about-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .tabs { overflow-x: auto; scrollbar-width: none; } .tabs::-webkit-scrollbar { display: none; } .tab { padding: 10px 16px; font-size: 13px; white-space: nowrap; } .footer-inner { flex-direction: column; text-align: center; } .footer-links { justify-content: center; } .section { padding: 48px 16px; } .section-header { margin-bottom: 32px; } .modal { padding: 32px 24px; margin: 0 16px; } }
@media (max-width: 480px) { .creators-grid { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; } .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.container { max-width: 900px; margin: 0 auto; }
.text-center { text-align: center; } .text-accent { color: var(--accent); } .text-muted { color: var(--text2); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.gap-8 { gap: 8px; } .gap-16 { gap: 16px; }
