/* Wild Wolves - Radio Podcast Website - Premium Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #050404;
  --bg-secondary: #0f0d0d;
  --bg-card: rgba(35, 12, 12, 0.85);
  --bg-glass: rgba(202, 5, 5, 0.08);
  --bg-glass-hover: rgba(202, 5, 5, 0.16);
  --bg-input: rgba(202, 5, 5, 0.12);
  --border-color: rgba(202, 5, 5, 0.35);
  --border-active: rgba(202, 5, 5, 0.70);
  --text-primary: #f8f4f4;
  --text-secondary: #d8cdcd;
  --text-muted: #b3a9a9;
  --accent: #ca0505;
  --accent-light: #ff3a3a;
  --accent-dark: #9c0202;
  --accent-glow: rgba(202, 5, 5, 0.38);
  --accent-gradient: linear-gradient(135deg, #ca0505, #f12711, #ff5f5f);
  --success: #2ecc71;
  --danger: #e74c3c;
  --info: #3498db;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  transition: var(--transition);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  outline: none;
  border: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

::-webkit-scrollbar {
  width: 6px;
}

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

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

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-glass-hover);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
}

.nav-user:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-active);
}

.nav-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.nav-user-name {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-user-balance {
  font-size: 0.7rem;
  color: var(--accent-light);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a,
.user-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  background: none;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
}

.user-dropdown .divider {
  height: 1px;
  background: var(--border-color);
  margin: 6px 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-active);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* HERO */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.1)
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* SIDEBAR */
.page-with-sidebar {
  min-height: 100vh;
  padding-top: 72px;
}

.sidebar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 260px;
  height: calc(100vh - 72px);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 24px 0;
  overflow-y: auto;
  z-index: 50;
}

.sidebar-profile {
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 12px;
}

.sidebar-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  box-shadow: var(--shadow-glow);
}

.sidebar-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.sidebar-phone {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.sidebar-edit {
  font-size: 0.78rem;
  color: var(--accent);
  cursor: pointer;
}

.sidebar-balance {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.sidebar-nav {
  padding: 8px 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
  border-left-color: var(--accent);
}

.sidebar-nav a.active {
  color: var(--accent);
  background: var(--bg-glass);
  border-left-color: var(--accent);
  font-weight: 600;
}

.main-content {
  padding: 32px;
  margin-left: 260px;
}

/* AUTH PAGES */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.auth-container {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.auth-logo {
  text-align: center;
  margin-bottom: 40px;
}

.auth-logo .logo {
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

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

.auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.auth-tabs {
  display: flex;
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 32px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
}

.auth-tab.active {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 10px var(--accent-glow);
}

.auth-tab:hover:not(.active) {
  color: var(--text-primary);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.05);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group .error-text {
  font-size: 0.78rem;
  color: var(--danger);
  display: none;
}

.form-group.error input {
  border-color: var(--danger);
}

.form-group.error .error-text {
  display: block;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
}

/* EXPLORE ROOMS */
.explore-header {
  margin-bottom: 40px;
}

.explore-header h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.explore-header p {
  color: var(--text-secondary);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.room-card-image {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  z-index: 2;
}

.room-card-body {
  padding: 20px;
}

.room-card-category {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.room-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.room-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.room-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.room-card-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ROOM DETAIL */
.room-detail {
  padding-top: 100px;
}

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

.room-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.room-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-detail-info {
  padding: 20px 0;
}

.room-detail-category {
  font-size: 0.82rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.room-detail-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.room-detail-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.room-detail-host {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.room-detail-host-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.room-detail-pricing {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.room-detail-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.room-detail-price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.room-feature .check {
  color: var(--success);
}

/* CHECKOUT */
.checkout-page {
  padding-top: 100px;
  padding-bottom: 60px;
}

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

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-section-title .step-num {
  width: 28px;
  height: 28px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-glass);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.payment-method:hover {
  border-color: var(--border-active);
}

.payment-method.selected {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.05);
}

.payment-method input[type="radio"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}

.payment-method-info h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

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

.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.order-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.order-item-image {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-info h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

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

.order-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.order-total-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.order-total-row.total .price {
  color: var(--accent);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition);
}

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

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal .order-id {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: monospace;
  color: var(--accent);
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-section a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-section a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact .email {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 20px 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
}


/* ========== FOOTER STYLES (Integrated with Wild Wolves Theme) ========== */

#main-footer {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 0 32px 40px;
  margin-bottom: 0;
}

/* Footer Brand Section (Logo + Tagline) */
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

/* Desktop (1025px+) */
.footer-brand .logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
  .footer-brand .logo-img {
    height: 50px;
  }
}

/* Mobile (481px - 768px) */
@media (max-width: 768px) {
  .footer-brand .logo-img {
    height: 45px;
  }
}

/* Small Mobile (321px - 480px) */
@media (max-width: 480px) {
  .footer-brand .logo-img {
    height: 40px;
  }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 360px) {
  .footer-brand .logo-img {
    height: 35px;
  }
}

.brand-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-brand .copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: auto;
}

/* Footer Links Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

/* Footer Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-display);
}

.address {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.phone {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone strong {
  color: var(--accent-light);
  font-weight: 700;
}

.email {
  margin: 0 !important;
}

.email a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.email a:hover {
  color: var(--accent);
  gap: 10px;
}

/* Footer Bottom Divider and Copyright */
#main-footer::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--border-color);
  margin: 0;
  width: 100%;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 20px 32px;
  width: 100%;
}

/* ========== RESPONSIVE FOOTER ========== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }

  .footer-brand .logo {
    margin-bottom: 14px;
    font-size: 1.2rem;
  }

  .footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .footer-brand .logo-img {
    height: 36px;
  }

  .brand-tagline {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .footer-brand .copyright {
    font-size: 0.75rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .footer-links ul li a {
    font-size: 0.85rem;
  }

  .company-name {
    font-size: 0.85rem;
  }

  .address {
    font-size: 0.78rem;
  }

  .phone {
    font-size: 0.85rem;
  }

  .email a {
    font-size: 0.78rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 18px 24px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  #main-footer {
    padding: 40px 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px 24px;
  }

  .footer-brand {
    grid-column: auto;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  .footer-brand .logo {
    margin-bottom: 12px;
    font-size: 1.1rem;
  }

  .footer-brand .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .footer-brand .logo-img {
    height: 32px;
  }

  .brand-tagline {
    font-size: 0.82rem;
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .footer-brand .copyright {
    font-size: 0.72rem;
  }

  .footer-section {
    padding-top: 8px;
  }

  .footer-section h4 {
    font-size: 0.88rem;
    margin-bottom: 12px;
    margin-top: 4px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a {
    font-size: 0.82rem;
  }

  .contact-info {
    gap: 10px;
  }

  .company-name {
    font-size: 0.82rem;
  }

  .address {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .phone {
    font-size: 0.82rem;
  }

  .email a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    font-size: 0.72rem;
    padding: 16px 20px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  #main-footer {
    padding: 30px 0 0;
  }

  .footer-content {
    gap: 16px;
    padding: 0 16px 16px;
  }

  .footer-brand {
    padding-bottom: 16px;
  }

  .footer-brand .logo {
    margin-bottom: 10px;
    font-size: 1rem;
    gap: 10px;
  }

  .footer-brand .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .footer-brand .logo-img {
    height: 28px;
  }

  .brand-tagline {
    font-size: 0.78rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .footer-brand .copyright {
    font-size: 0.68rem;
  }

  .footer-section h4 {
    font-size: 0.82rem;
    margin-bottom: 10px;
    margin-top: 2px;
  }

  .footer-links ul li {
    margin-bottom: 6px;
  }

  .footer-links ul li a {
    font-size: 0.78rem;
  }

  .contact-info {
    gap: 8px;
  }

  .company-name {
    font-size: 0.78rem;
  }

  .address {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .phone {
    font-size: 0.78rem;
  }

  .email a {
    font-size: 0.7rem;
  }

  .footer-bottom {
    font-size: 0.68rem;
    padding: 12px 16px;
  }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 360px) {
  .footer-content {
    padding: 0 12px 12px;
  }

  .footer-brand .logo {
    font-size: 0.95rem;
    gap: 8px;
  }

  .footer-brand .logo-icon {
    width: 26px;
    height: 26px;
  }

  .footer-section h4 {
    font-size: 0.78rem;
  }

  .brand-tagline,
  .address,
  .footer-links ul li a {
    font-size: 0.75rem;
  }
}

/* STATIC PAGES */
.page-header {
  padding: 120px 0 40px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  transition: var(--transition);
}

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

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
}

.faq-question .icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* RECHARGE */
.recharge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.recharge-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.recharge-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.recharge-card.popular::before {
  content: 'Popular';
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(35deg);
}

.recharge-coins {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.recharge-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.recharge-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* PODCAST */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

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

.podcast-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.podcast-card-image {
  height: 180px;
  overflow: hidden;
}

.podcast-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.podcast-card:hover .podcast-card-image img {
  transform: scale(1.05);
}

.podcast-card-body {
  padding: 20px;
}

.podcast-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.podcast-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.podcast-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* AUDIO PLAYER */
.audio-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
}

.audio-player-bar.active {
  transform: translateY(0);
}

.audio-player-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.ap-track-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  max-width: 280px;
  flex-shrink: 0;
}

.ap-track-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.ap-track-thumb img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
}

.ap-track-text {
  overflow: hidden;
  flex: 1;
}

.ap-track-title {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.ap-track-artist {
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ap-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.ap-btn:hover {
  background: var(--bg-glass-hover);
}

.ap-btn.play-btn {
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.ap-btn.play-btn:hover {
  transform: scale(1.08);
}

.ap-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 120px;
}

.ap-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.ap-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  min-width: 60px;
}

.ap-progress-bar:hover {
  height: 6px;
}

.ap-progress-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 2px;
  position: relative;
  transition: width 0.1s linear;
}

.ap-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s;
}

.ap-progress-bar:hover .ap-progress-fill::after {
  opacity: 1;
}

.ap-volume {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ap-volume-bar {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.ap-volume-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.ap-close-btn {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.ap-close-btn:hover {
  color: var(--danger);
}

.podcast-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  background: none;
  padding: 0;
}

.podcast-play-btn:hover {
  gap: 12px;
}

.podcast-card.now-playing {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.podcast-card.now-playing .podcast-play-btn {
  color: var(--success);
}

.now-playing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(46, 204, 113, 0.15);
  color: var(--success);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.now-playing-badge .eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.now-playing-badge .eq-bar {
  width: 3px;
  background: var(--success);
  border-radius: 1px;
  animation: eq-anim 0.8s ease-in-out infinite;
}

.now-playing-badge .eq-bar:nth-child(1) {
  height: 4px;
  animation-delay: 0s;
}

.now-playing-badge .eq-bar:nth-child(2) {
  height: 8px;
  animation-delay: 0.2s;
}

.now-playing-badge .eq-bar:nth-child(3) {
  height: 5px;
  animation-delay: 0.4s;
}

.now-playing-badge .eq-bar:nth-child(4) {
  height: 10px;
  animation-delay: 0.1s;
}

@keyframes eq-anim {

  0%,
  100% {
    height: 4px
  }

  50% {
    height: 12px
  }
}

/* COMPLIANCE */
.compliance-section {
  margin-bottom: 32px;
}

.compliance-section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-light);
}

.compliance-section p,
.compliance-section li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.compliance-section ul {
  padding-left: 20px;
  list-style: disc;
}

/* TOAST */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  animation: toast-in 0.3s ease;
  font-size: 0.9rem;
}

.toast.success {
  border-left: 3px solid var(--success);
}

.toast.error {
  border-left: 3px solid var(--danger);
}

.toast.removing {
  animation: toast-out 0.3s ease forwards;
}

@keyframes toast-in {
  from {
    transform: translateX(100%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes toast-out {
  from {
    transform: translateX(0);
    opacity: 1
  }

  to {
    transform: translateX(100%);
    opacity: 0
  }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-in:nth-child(1) {
  animation-delay: 0.1s
}

.animate-in:nth-child(2) {
  animation-delay: 0.2s
}

.animate-in:nth-child(3) {
  animation-delay: 0.3s
}

/* RESPONSIVE - Tablet */
@media (max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .room-detail-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-image img {
    height: 300px;
  }

  .order-summary {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .podcast-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .recharge-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* RESPONSIVE - Mobile */
@media (max-width:768px) {
  /* grid removed — sidebar is position:fixed, main-content uses margin-left */

  .sidebar {
    position: fixed;
    left: -280px;
    width: 280px;
    transition: var(--transition);
    z-index: 999;
  }

  .sidebar.open {
    left: 0;
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }

  .sidebar-overlay.show {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding: 20px 16px;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 16px;
  }

  /* Mobile Nav Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }

  .nav-overlay.show {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 100px 0 40px;
  }

  .hero-card {
    padding: 28px 20px;
  }

  .hero-card h2 {
    font-size: 1.15rem;
  }

  /* Page Headers */
  .page-header {
    padding: 100px 0 30px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header p {
    font-size: 0.9rem;
    padding: 0 16px;
  }

  /* Grids */
  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .recharge-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .recharge-card {
    padding: 20px 14px;
  }

  .recharge-coins {
    font-size: 1.6rem;
  }

  .recharge-price {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    padding: 0 20px 30px;
  }

  /* Auth */
  .auth-card {
    padding: 28px 20px;
  }

  .auth-container {
    max-width: 100%;
  }

  /* Room Detail */
  .room-detail {
    padding-top: 86px;
  }

  .room-detail-title {
    font-size: 1.5rem;
  }

  .room-detail-price {
    font-size: 2rem;
  }

  /* Checkout */
  .checkout-page {
    padding-top: 86px;
  }

  .checkout-page h1 {
    font-size: 1.5rem;
  }

  /* Filter Bar */
  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  /* Explore */
  .explore-header h1 {
    font-size: 1.6rem;
  }

  /* Audio Player Mobile */
  .audio-player-bar {
    height: auto;
    padding: 10px 0;
  }

  .audio-player-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 16px;
  }

  .ap-track-info {
    min-width: 0;
    max-width: none;
    flex: 1;
  }

  .ap-track-thumb {
    width: 42px;
    height: 42px;
  }

  .ap-track-thumb img {
    width: 42px;
    height: 42px;
  }

  .ap-controls {
    gap: 6px;
    order: 0;
  }

  .ap-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .ap-btn.play-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .ap-progress-wrap {
    width: 100%;
    order: 3;
    flex: none;
    min-width: 0;
  }

  .ap-volume {
    display: none;
  }

  .ap-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
  }

  /* Modal */
  .modal {
    padding: 32px 24px;
    max-width: 92%;
  }

  /* Content Cards */
  .content-card {
    padding: 24px 18px;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 18px 16px;
  }

  /* Contact */
  .contact-info-item {
    margin-bottom: 18px;
  }
}

/* RESPONSIVE - Small Mobile */
@media (max-width:480px) {
  .header-inner {
    height: 60px;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }

  .logo-img {
    height: 100px;
  }

  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-overlay {
    top: 60px;
  }

  .hero {
    padding: 80px 0 30px;
  }

  .hero-card {
    padding: 24px 16px;
  }

  .hero-card h2 {
    font-size: 1.05rem;
  }

  .hero-card p {
    font-size: 0.85rem;
  }

  .page-header {
    padding: 80px 0 24px;
  }

  .page-header h1 {
    font-size: 1.35rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-card-image {
    height: 160px;
  }

  .recharge-grid {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .explore-header {
    margin-bottom: 24px;
  }

  .explore-header h1 {
    font-size: 1.3rem;
  }

  .room-detail {
    padding-top: 72px;
  }

  .room-detail-image img {
    height: 220px;
  }

  .room-detail-title {
    font-size: 1.3rem;
  }

  .room-detail-pricing {
    padding: 20px;
  }

  .checkout-page {
    padding-top: 72px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .toast {
    min-width: unset;
    max-width: calc(100vw - 48px);
    font-size: 0.82rem;
  }

  .toast-container {
    right: 16px;
    left: 16px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-section h4 {
    font-size: 0.92rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 16px;
  }
}

/* ========== JOIN ROOM PAGE ========== */
.joinroom-page {
  background: var(--bg-primary);
  min-height: 100vh;
  font-family: var(--font-primary);
  color: var(--text-primary);
}

/* Header */
.jr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(15,13,13,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}
.jr-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.jr-room-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 12px var(--accent-glow);
}
.jr-room-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jr-room-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}
.jr-room-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-light);
  margin: 0;
}
.jr-room-desc-short {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.jr-online-count {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
  background: var(--bg-glass);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

/* Layout */
.jr-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: calc(100vh - 81px);
}

/* Main Area */
.jr-main {
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Seats Container */
.jr-seats-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.jr-seats-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.jr-seat-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.jr-row-host {
  gap: 40px;
  margin-bottom: 12px;
}

/* Seat */
.jr-seat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: all 0.3s ease;
}
.jr-seat-joinable {
  cursor: pointer;
}
.jr-seat-joinable:hover .jr-seat-avatar {
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--accent-glow);
}
.jr-seat-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed rgba(202, 5, 5, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(202, 5, 5, 0.06);
  transition: all 0.3s ease;
  position: relative;
}
.jr-seat-host .jr-seat-avatar {
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent);
  border-style: solid;
  background: rgba(202, 5, 5, 0.1);
  box-shadow: 0 0 20px var(--accent-glow);
}
.jr-seat.joined .jr-seat-avatar {
  border-color: var(--success);
  border-style: solid;
  background: rgba(46, 204, 113, 0.1);
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.25);
}
.jr-mic-icon {
  font-size: 1.2rem;
  opacity: 0.4;
}
.jr-seat-host .jr-mic-icon {
  font-size: 1.5rem;
  opacity: 0.7;
}
.jr-user-initial {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--success);
}

/* Seat Badge */
.jr-seat-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: -4px;
}
.host-badge {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-glow);
}

/* Seat Label */
.jr-seat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.host-label {
  color: var(--accent-light);
}

/* Seat Status */
.jr-seat-status {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.join-status {
  color: var(--accent-light);
  font-weight: 600;
}

/* Unmute Button */
.jr-unmute-btn {
  position: absolute;
  left: 32px;
  bottom: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 10;
}
.jr-unmute-btn:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Bottom Bar */
.jr-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.jr-gifts {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jr-gift-item, .jr-gift-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
}
.jr-gift-item:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-glow);
}
.jr-gift-icon {
  font-size: 1.3rem;
}
.jr-gift-item span, .jr-gift-more span {
  font-size: 0.68rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.jr-gift-more {
  background: none;
  border: none;
}
.jr-gift-more .jr-gift-icon {
  background: var(--accent-gradient);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px var(--accent-glow);
}
.jr-bottom-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.jr-recharge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
}
.jr-recharge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

/* Chat Sidebar */
.jr-chat-sidebar {
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 81px);
}
.jr-chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.jr-chat-desc {
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border-color);
}
.jr-chat-messages {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jr-chat-msg {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  animation: fadeInUp 0.3s ease;
}
.jr-chat-msg.system-msg {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
}
.jr-chat-sender {
  font-weight: 700;
  margin-right: 4px;
}
.jr-chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}
.jr-chat-input-wrap input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  background: var(--bg-input);
  color: var(--text-primary);
  transition: all 0.2s ease;
}
.jr-chat-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: rgba(202, 5, 5, 0.05);
}
.jr-chat-input-wrap input::placeholder {
  color: var(--text-muted);
}
.jr-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px var(--accent-glow);
}
.jr-chat-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* Report Button */
.jr-report-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(202, 5, 5, 0.12);
  border: 1px solid rgba(202, 5, 5, 0.3);
  border-radius: var(--radius-xl);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  font-family: var(--font-primary);
}
.jr-report-btn svg {
  flex-shrink: 0;
}
.jr-report-btn:hover {
  background: rgba(202, 5, 5, 0.25);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
  color: #fff;
}

/* Report Modal Overlay */
.jr-report-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.jr-report-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Report Modal */
.jr-report-modal {
  width: 100%;
  max-width: 480px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-glow);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.jr-report-overlay.active .jr-report-modal {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.jr-report-modal-header {
  position: relative;
  padding: 28px 28px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(202, 5, 5, 0.12) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
}
.jr-report-modal-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: report-icon-pulse 2s ease-in-out infinite;
}
@keyframes report-icon-pulse {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 35px rgba(202, 5, 5, 0.55); }
}
.jr-report-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.jr-report-modal-header > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.jr-report-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.jr-report-close:hover {
  background: var(--bg-glass-hover);
  color: var(--accent-light);
  border-color: var(--accent);
  transform: rotate(90deg);
}

/* Modal Body */
.jr-report-modal-body {
  padding: 20px 28px;
  max-height: 360px;
  overflow-y: auto;
}

/* Report Reasons */
.jr-report-reasons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.jr-report-reason {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.jr-report-reason:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(202, 5, 5, 0.5);
}
.jr-report-reason input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.jr-report-reason-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease;
}
.jr-report-reason-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gradient);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.jr-report-reason input[type="radio"]:checked ~ .jr-report-reason-radio {
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.jr-report-reason input[type="radio"]:checked ~ .jr-report-reason-radio::after {
  transform: translate(-50%, -50%) scale(1);
}
.jr-report-reason input[type="radio"]:checked ~ div strong {
  color: var(--accent-light);
}
.jr-report-reason div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jr-report-reason strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}
.jr-report-reason small {
  font-size: 0.73rem;
  color: var(--text-muted);
}

/* Description Group */
.jr-report-desc-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jr-report-desc-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.jr-report-desc-group label span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.jr-report-desc-group textarea {
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-primary);
  resize: vertical;
  min-height: 70px;
  transition: all 0.25s ease;
}
.jr-report-desc-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: rgba(202, 5, 5, 0.05);
}
.jr-report-desc-group textarea::placeholder {
  color: var(--text-muted);
}

/* Modal Footer */
.jr-report-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border-color);
}
.jr-report-cancel {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-primary);
}
.jr-report-cancel:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  border-color: var(--border-active);
}
.jr-report-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
  font-family: var(--font-primary);
}
.jr-report-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}
.jr-report-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Report Spinner */
.jr-report-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: jr-spin 0.6s linear infinite;
}
@keyframes jr-spin {
  to { transform: rotate(360deg); }
}

/* Join Room Responsive */
@media (max-width: 1024px) {
  .jr-layout {
    grid-template-columns: 1fr;
  }
  .jr-chat-sidebar {
    height: auto;
    min-height: 300px;
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
  .jr-chat-messages {
    max-height: 250px;
  }
}

@media (max-width: 768px) {
  .jr-header {
    padding: 12px 16px;
  }
  .jr-room-name {
    font-size: 0.95rem;
  }
  .jr-room-desc-short {
    display: none;
  }
  .jr-main {
    padding: 16px;
  }
  .jr-seats-container {
    padding: 20px 12px;
    gap: 16px;
  }
  .jr-seat-avatar {
    width: 50px;
    height: 50px;
  }
  .jr-seat-host .jr-seat-avatar {
    width: 64px;
    height: 64px;
  }
  .jr-seat-row {
    gap: 14px;
  }
  .jr-row-host {
    gap: 24px;
  }
  .jr-unmute-btn {
    left: 16px;
    bottom: 120px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .jr-bottom-bar {
    flex-wrap: wrap;
    padding: 12px 14px;
    gap: 10px;
  }
  .jr-gifts {
    flex-wrap: wrap;
    gap: 6px;
  }
  .jr-gift-item {
    padding: 6px 8px;
  }
  .jr-gift-icon {
    font-size: 1.1rem;
  }
  .jr-gift-item span, .jr-gift-more span {
    font-size: 0.62rem;
  }
  .jr-report-btn {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 0.72rem;
  }
  .jr-report-modal-header {
    padding: 22px 20px 16px;
  }
  .jr-report-modal-body {
    padding: 16px 20px;
    max-height: 300px;
  }
  .jr-report-modal-footer {
    padding: 14px 20px 20px;
  }
  .jr-report-overlay {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .jr-layout {
    grid-template-columns: 1fr;
  }
  .jr-seat-row {
    gap: 10px;
  }
  .jr-seat-avatar {
    width: 44px;
    height: 44px;
  }
  .jr-seat-host .jr-seat-avatar {
    width: 56px;
    height: 56px;
  }
  .jr-seat-label {
    font-size: 0.7rem;
  }
  .jr-seat-status {
    font-size: 0.62rem;
  }
  .jr-report-btn {
    padding: 5px 10px;
    font-size: 0.68rem;
    gap: 4px;
  }
  .jr-report-btn svg {
    width: 12px;
    height: 12px;
  }
  .jr-mic-icon {
    font-size: 1rem;
  }
}

/* ========== PAGE LOADING SCREEN ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader img {
  width: 120px;
  height: auto;
}

.page-loader-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========== HERO BANNER (Home Page) ========== */
.hero-banner {
  position: relative;
  padding: 60px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-banner-image-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  perspective: 1000px;
}

.hero-banner-image {
  width: 620px;
  max-width: 90vw;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(202, 5, 5, 0.2), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.1s linear, width 0.1s linear;
  will-change: transform, width;
}

.hero-banner-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-banner-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-banner-title { font-size: 2rem; }
  .hero-banner-subtitle { font-size: 0.92rem; }
  .hero-banner-image { width: 240px; }
}

/* ========== EXPLORE THE FUN SECTION ========== */
.explore-fun {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.explore-fun::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(202, 5, 5, 0.04) 0%, 
    rgba(202, 5, 5, 0.08) 50%, 
    rgba(202, 5, 5, 0.02) 100%);
  pointer-events: none;
}

.explore-fun-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.explore-fun-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.explore-fun-title span {
  color: var(--accent);
}

.explore-fun-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.explore-fun-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
}

/* Timeline connecting line */
.explore-fun-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
  opacity: 0.4;
}

.fun-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fun-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.fun-feature:hover .fun-feature-icon {
  transform: scale(1.15);
  box-shadow: 0 0 35px var(--accent-glow);
}

.fun-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  width: 100%;
  transition: var(--transition);
}

.fun-feature:hover .fun-feature-card {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.fun-feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.fun-feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .explore-fun { padding: 50px 0; }
  .explore-fun-title { font-size: 1.7rem; }
  .explore-fun-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .explore-fun-timeline::before { display: none; }
}