* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-primary: #0A0E27;
  --bg-secondary: #1A1F3A;
  --color-purple: #8B5CF6;
  --color-cyan: #00CED1;
  --color-gold: #FFD700;
  --color-red: #FF6B6B;
  --color-green: #66BB6A;
  --color-green-dark: #4CAF50;
  --color-orange: #FF8C42;
  --color-blue: #5DADE2;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --border-color: rgba(139, 92, 246, 0.3);
  --gradient-purple-cyan: linear-gradient(90deg, #8B5CF6, #00CED1);
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  height: 100%;
  display: flex;
  position: relative;
}

/* Header */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-top: calc(var(--safe-area-top) + 12px);
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--color-purple);
  min-height: 60px;
}

.app-header.hidden { display: none; }

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-btn:active { opacity: 0.7; }
.header-btn.hidden { display: none; }

.header-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.header-right { width: 40px; }

/* Main Content */
#main-content {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-container {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: calc(var(--safe-area-top) + 60px);
  padding-bottom: var(--safe-area-bottom);
}

.page-container.no-header {
  padding-top: 0;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.8);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: var(--safe-area-top);
}

.drawer.open { left: 0; }

.drawer-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-menu-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  margin: 2px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--text-secondary);
}

.drawer-menu-item:active { background: rgba(139, 92, 246, 0.2); }
.drawer-menu-item.active {
  background: rgba(139, 92, 246, 0.2);
  color: var(--color-purple);
}

.drawer-menu-item .material-icons {
  margin-right: 12px;
  font-size: 26px;
}

.drawer-menu-item span:last-child {
  font-size: 16px;
  font-weight: 500;
}

.drawer-divider {
  height: 1px;
  background: var(--border-color);
  margin: 10px 20px;
}

.drawer-toggle-section {
  padding: 14px 18px;
  margin: 2px 10px;
  border-radius: 12px;
  border-top: 1px solid var(--border-color);
  cursor: pointer;
}

.drawer-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-toggle-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-toggle-label {
  font-size: 16px;
  font-weight: 600;
}

.drawer-toggle-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.drawer-payment-warning {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  animation: blink 1.4s infinite;
  margin-bottom: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.drawer-email-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--bg-secondary);
  margin: 10px 10px;
  border-radius: 12px;
  border-top: 1px solid var(--border-color);
}

.drawer-email-section .material-icons { color: var(--color-cyan); margin-right: 8px; font-size: 18px; }
.drawer-email-text { font-size: 13px; color: var(--text-secondary); }
.drawer-email-address { font-size: 13px; color: var(--color-cyan); font-weight: bold; }

.drawer-logout-btn {
  display: flex;
  align-items: center;
  padding: 18px;
  margin: 10px 10px;
  border-radius: 12px;
  background: rgba(255, 107, 107, 0.2);
  cursor: pointer;
  border: none;
  width: calc(100% - 20px);
}

.drawer-logout-btn .material-icons { color: var(--color-red); margin-right: 12px; }
.drawer-logout-btn span:last-child { color: var(--color-red); font-size: 16px; font-weight: 600; }

/* Buttons & Inputs */
.btn-gradient {
  background: var(--gradient-purple-cyan);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-gradient:active { opacity: 0.8; }
.btn-gradient:disabled { opacity: 0.5; cursor: not-allowed; }

.input-field {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  background: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  margin-bottom: 15px;
}

.input-field:focus { border-color: var(--color-purple); }

.input-dark {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.input-dark:focus { border-color: var(--color-purple); }
.input-dark::placeholder { color: #888; }

/* Cards */
.card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
}

/* Login Page */
.login-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%),
              linear-gradient(135deg, #1a0533 0%, #0a0e27 50%, #001a33 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.login-logo-container {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 20px;
}

.login-logo {
  width: 200px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.login-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-top: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.75);
}

.login-form {
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}

.login-error-box {
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid;
  gap: 10px;
}

.login-error-box.error {
  background: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.5);
}

.login-error-box.info {
  background: rgba(0, 206, 209, 0.15);
  border-color: rgba(0, 206, 209, 0.5);
}

.login-error-title { color: white; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.login-error-message { color: rgba(255,255,255,0.92); font-size: 13px; line-height: 18px; }

.forgot-password-btn {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.login-info-card {
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px;
  width: 85%;
  max-width: 350px;
}

.login-info-title {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
  text-align: center;
}

.login-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  gap: 8px;
}

.login-info-item span:first-child { font-size: 18px; }
.login-info-item span:last-child { font-size: 14px; color: white; }

.login-divider {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 0 30px;
}

.login-divider-text {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

/* Home Page */
.home-page {
  min-height: 100%;
  background: linear-gradient(135deg, #1a0533 0%, #0a0e27 50%, #001a33 100%);
  padding: 20px;
  padding-top: 40px;
}

.motivation-container {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.slogan-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.slogan-icon { font-size: 32px; color: white; margin-bottom: 8px; }

.motivation-text {
  font-size: 18px;
  color: white;
  font-weight: 800;
  line-height: 26px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  margin-bottom: 6px;
}

.motivation-highlight {
  color: var(--color-gold);
  font-size: 19px;
  font-weight: 900;
}

.motivation-subtext {
  font-size: 13px;
  color: #E8E8E8;
  font-weight: 500;
  font-style: italic;
  line-height: 18px;
}

.home-button-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.home-btn {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.home-btn:active { transform: scale(0.97); }

.home-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  height: 100px;
  border-radius: 24px;
  border-top: 2px solid rgba(255,255,255,0.3);
}

.home-btn-inner.column {
  flex-direction: column;
  padding: 20px 12px;
}

.home-btn-inner .material-icons { font-size: 28px; color: white; }

.home-btn-text {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-left: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.home-btn-text.small {
  font-size: 12px;
  margin-left: 0;
  margin-top: 8px;
  text-align: center;
  line-height: 16px;
}

.home-btn-text.medium {
  font-size: 14px;
  margin-left: 0;
  margin-top: 8px;
  text-align: center;
}

.gradient-blue { background: linear-gradient(135deg, #5DADE2 0%, #3498DB 40%, #2874A6 70%, #1B4F72 100%); }
.gradient-purple { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 40%, #6D28D9 70%, #5B21B6 100%); }
.gradient-orange { background: linear-gradient(135deg, #FF8C42 0%, #FF7A33 30%, #FF6B24 70%, #FF5722 100%); }
.gradient-gold { background: linear-gradient(135deg, #FFD700 0%, #FFC107 40%, #FFB300 70%, #FFA000 100%); }
.gradient-teal { background: linear-gradient(135deg, #1ABC9C 0%, #16A085 30%, #138D75 70%, #0E6655 100%); }
.gradient-violet { background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 40%, #7D3C98 70%, #6C3483 100%); }

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #FF6B35;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: white;
  border: 2px solid white;
}

/* Profile Page */
.profile-header {
  text-align: center;
  padding: 20px;
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--color-purple);
}

.profile-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  cursor: pointer;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  border: 3px solid var(--color-purple);
  object-fit: cover;
}

.profile-image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background: var(--bg-secondary);
  border: 3px solid var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image-placeholder .material-icons { font-size: 50px; color: var(--color-purple); }

.profile-edit-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-purple);
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

.profile-edit-icon .material-icons { font-size: 20px; color: white; }

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

.form-label {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}

.form-container {
  padding: 20px;
}

.textarea-dark {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  outline: none;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

.specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.specialty-chip {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.specialty-chip.selected {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: white;
  font-weight: 600;
}

.specialty-chip .material-icons { font-size: 18px; margin-left: 5px; }

/* Section Cards */
.section-card {
  padding: 20px;
  background: var(--bg-secondary);
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

/* Working Hours */
.day-container {
  background: var(--bg-secondary);
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  cursor: pointer;
}

.day-header:active { background: rgba(139, 92, 246, 0.1); }

.day-title { font-size: 18px; font-weight: bold; color: white; }

.day-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.selected-count { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

.hours-container {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  padding-top: 0;
  background: var(--bg-primary);
  gap: 8px;
}

.hour-button {
  padding: 10px 14px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  min-width: 80px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hour-button.selected {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: white;
  font-weight: bold;
}

.hour-button:active { opacity: 0.7; }

/* Save Button (fixed bottom) */
.save-button-container {
  padding: 15px;
  position: sticky;
  bottom: 0;
  background: var(--bg-primary);
}

.save-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 12px;
  background: var(--gradient-purple-cyan);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  gap: 8px;
  width: 100%;
}

.save-button:active { opacity: 0.8; }

/* Appointments / Randevu */
.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  padding: 0 15px;
  background: var(--bg-secondary);
}

.tab-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 5px;
  cursor: pointer;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  font-size: 14px;
}

.tab-item.active {
  color: var(--color-purple);
  border-bottom-color: var(--color-purple);
  font-weight: bold;
}

.tab-badge {
  background: var(--color-gold);
  border-radius: 12px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  margin-left: 4px;
}

.sub-tab-bar {
  display: flex;
  margin: 10px 15px;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid var(--border-color);
}

.sub-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.sub-tab.active {
  background: var(--color-purple);
  color: white;
  font-weight: bold;
}

.randevu-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
}

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

.randevu-title { font-size: 16px; font-weight: bold; color: white; }

.durum-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.durum-beklemede { background: #FFD54F; }
.durum-onaylandi { background: #81C784; }
.durum-tamamlandi { background: #2E7D32; }
.durum-iptal { background: #FF8A65; }

.kullanici-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.profil-resmi {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.kullanici-ad { font-size: 15px; font-weight: bold; color: white; }
.randevu-detay { font-size: 14px; color: var(--text-secondary); }
.kullanici-iletisim { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

.randevu-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 5px;
}

.btn-iptal {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #FF5252;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.btn-onayla {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--gradient-purple-cyan);
  border: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

/* Calendar */
.calendar-container { padding: 15px; }

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

.calendar-month-title { font-size: 20px; font-weight: bold; color: white; }
.calendar-nav { background: none; border: none; cursor: pointer; color: var(--color-cyan); padding: 5px; }

.calendar-week-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 10px;
}

.week-day-text { text-align: center; font-size: 14px; font-weight: bold; color: var(--text-secondary); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.calendar-day:active { background: rgba(139, 92, 246, 0.2); }

.calendar-day.today {
  background: rgba(139, 92, 246, 0.3);
  border: 2px solid var(--color-purple);
}

.calendar-day-text { font-size: 16px; font-weight: bold; color: white; }
.calendar-day.today .calendar-day-text { color: var(--color-purple); }

.appointment-count-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-cyan);
  border-radius: 12px;
  padding: 1px 4px;
  font-size: 10px;
  font-weight: bold;
  color: white;
}

/* Time Grid */
.time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }

.time-grid-item {
  padding: 10px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.time-grid-item:active { opacity: 0.7; }
.time-grid-item.confirmed { background: rgba(0, 206, 209, 0.2); border-color: var(--color-cyan); }
.time-grid-item.pending { background: rgba(255, 215, 0, 0.2); border-color: var(--color-gold); }
.time-grid-item.cancelled { background: rgba(255, 107, 107, 0.2); border-color: var(--color-red); }
.time-grid-item.completed { background: rgba(76, 175, 80, 0.2); border-color: var(--color-green-dark); }
.time-grid-item.unavailable { background: var(--bg-primary); border-color: rgba(139,92,246,0.1); opacity: 0.5; }

.time-grid-text { font-size: 16px; font-weight: bold; color: white; }
.time-grid-status { font-size: 12px; font-weight: bold; margin-top: 5px; }
.time-grid-status.available { color: var(--color-cyan); }
.time-grid-status.confirmed { color: var(--color-cyan); }
.time-grid-status.pending { color: var(--color-gold); }
.time-grid-status.cancelled { color: var(--color-red); }
.time-grid-status.completed { color: var(--color-green-dark); }
.time-grid-status.unavailable { color: #999; }

/* Blog - Management */
.blog-mgmt-page { background: #1A1A2E; min-height: 100%; }
.blog-loading-text { margin-top: 12px; font-size: 14px; color: #B0B0B0; text-align: center; }

.blog-mgmt-header {
  padding: 20px;
  background: #16213E;
  border-bottom: 2px solid #00CED1;
}

.blog-mgmt-header-title { font-size: 26px; font-weight: bold; color: #fff; margin: 0 0 5px; }
.blog-mgmt-header-subtitle { font-size: 14px; color: #B0B0B0; margin: 0 0 20px; }

.blog-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #00CED1, #00A8A8);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,206,209,0.4);
}

.blog-mgmt-list { padding: 16px; }

.blog-mgmt-card {
  background: #16213E;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,206,209,0.3);
  box-shadow: 0 3px 6px rgba(0,206,209,0.3);
}

.blog-mgmt-image { width: 100%; height: 200px; object-fit: cover; display: block; }

.blog-mgmt-content { padding: 18px; }
.blog-mgmt-title { font-size: 20px; font-weight: bold; color: #fff; margin: 0 0 10px; line-height: 26px; }
.blog-mgmt-excerpt { font-size: 14px; color: #B0B0B0; margin: 0 0 12px; line-height: 20px; }

.blog-mgmt-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0,206,209,0.2);
}

.blog-mgmt-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #B0B0B0;
}

.blog-mgmt-info .material-icons { font-size: 14px; color: #00CED1; }
.blog-mgmt-views { color: #fff; font-weight: 600; }

.blog-mgmt-actions { display: flex; gap: 8px; }

.blog-edit-btn, .blog-delete-btn {
  padding: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.blog-edit-btn { background: rgba(0,206,209,0.2); color: #00CED1; }
.blog-delete-btn { background: rgba(255,107,107,0.2); color: #FF6B6B; }
.blog-edit-btn .material-icons, .blog-delete-btn .material-icons { font-size: 18px; }

.blog-mgmt-empty {
  text-align: center;
  padding: 100px 40px;
  color: #B0B0B0;
}

.blog-mgmt-empty .material-icons { font-size: 80px; color: #00CED1; display: block; margin-bottom: 20px; }
.blog-mgmt-empty p { color: #fff; font-size: 18px; font-weight: 600; margin: 0 0 10px; }
.blog-mgmt-empty small { font-size: 14px; }

/* Blog Modal */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
}

.blog-modal {
  background: #16213E;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  border: 2px solid #00CED1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,206,209,0.3);
}

.blog-modal-header h2 { font-size: 22px; font-weight: bold; color: #fff; margin: 0; flex: 1; }

.blog-modal-close {
  padding: 8px;
  background: rgba(255,107,107,0.2);
  border: none;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  display: flex;
}

.blog-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.blog-modal-input {
  width: 100%;
  background: #0F0F1E;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  border: 1px solid rgba(0,206,209,0.3);
  box-sizing: border-box;
  font-family: inherit;
}

.blog-modal-textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.5;
}

.blog-image-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #00CED1, #00A8A8);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
}

.blog-preview-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
}

.blog-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #00CED1, #00A8A8);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,206,209,0.4);
}

.blog-submit-btn.disabled, .blog-submit-btn:disabled {
  background: #666;
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Blog List */
.blog-list-page { background: #1A1A2E; min-height: 100%; }

.blog-list-header-section {
  padding: 20px;
  background: #16213E;
  border-bottom: 2px solid #00CED1;
}

.blog-list-page-title { font-size: 26px; font-weight: bold; color: #fff; margin: 0 0 5px; }
.blog-list-page-subtitle { font-size: 14px; color: #B0B0B0; margin: 0 0 10px; }

.blog-list-search-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.blog-list-search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: #0F0F1E;
  border-radius: 12px;
  padding: 0 12px;
  border: 1px solid rgba(0,206,209,0.3);
}

.blog-list-search-wrap .material-icons { color: #00CED1; font-size: 20px; margin-right: 8px; }

.blog-list-search-wrap input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  min-width: 0;
}

.blog-search-clear {
  background: none;
  border: none;
  color: #B0B0B0;
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.blog-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #00CED1, #00A8A8);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.blog-list-items { padding: 16px; }

.blog-list-card {
  background: #16213E;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,206,209,0.3);
  box-shadow: 0 3px 6px rgba(0,206,209,0.3);
  cursor: pointer;
  transition: transform 0.15s;
}

.blog-list-card:active { transform: scale(0.98); }

.blog-list-image { width: 100%; height: 200px; object-fit: cover; display: block; }

.blog-list-content { padding: 18px; }

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

.blog-list-kategori {
  background: #00CED1;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 15px;
}

.blog-list-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #B0B0B0;
}

.blog-list-date .material-icons { font-size: 12px; color: #00CED1; }

.blog-list-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-excerpt {
  font-size: 14px;
  color: #B0B0B0;
  line-height: 20px;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0,206,209,0.2);
}

.blog-list-author, .blog-list-views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.blog-list-author .material-icons, .blog-list-views .material-icons {
  font-size: 14px;
  color: #00CED1;
}

.blog-filter-modal {
  background: #16213E;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  border: 2px solid #00CED1;
  overflow: hidden;
}

.blog-filter-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,206,209,0.3);
}

.blog-filter-modal-header h3 { font-size: 20px; font-weight: bold; color: #fff; margin: 0; }

.blog-filter-options { padding: 15px; }

.blog-filter-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-bottom: 10px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}

.blog-filter-option.active {
  background: linear-gradient(90deg, #00CED1, #00A8A8);
  font-weight: 600;
}

/* Blog Detail - light theme like mobile */
.blog-detail-page {
  background: #f5f5f5;
  min-height: 100%;
  padding-bottom: 30px;
}

.blog-detail-hero {
  width: 100%;
  max-height: 60vw;
  object-fit: cover;
  display: block;
}

.blog-detail-card {
  background: #fff;
  margin: 16px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.blog-detail-kategori {
  background: #4A90E2;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 16px;
}

.blog-detail-date { font-size: 12px; color: #666; }

.blog-detail-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 32px;
  margin: 0 0 16px;
}

.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-detail-author .material-icons { font-size: 16px; }

.blog-detail-views {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 12px;
}

.blog-detail-separator {
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

.blog-detail-body {
  font-size: 16px;
  color: #333;
  line-height: 24px;
  text-align: justify;
  white-space: pre-wrap;
}

.blog-detail-comments {
  background: #fff;
  margin: 0 16px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-detail-comments-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.blog-detail-comments-header .material-icons { color: #4A90E2; font-size: 20px; }

.blog-detail-comments-header h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.blog-detail-no-comments {
  font-size: 14px;
  color: #999;
  text-align: center;
  padding: 20px 0;
  font-style: italic;
  margin: 0;
}

.blog-detail-comment {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  border-left: 3px solid #4A90E2;
}

.blog-detail-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.blog-detail-comment-user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.blog-detail-comment-user .material-icons { color: #4A90E2; font-size: 20px; }

.blog-detail-comment-date { font-size: 12px; color: #999; white-space: nowrap; }

.blog-detail-comment-text {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  margin: 0;
}

.blog-detail-error {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.blog-detail-error .material-icons { font-size: 60px; color: #ccc; }
.blog-detail-error button {
  margin-top: 20px;
  background: #4A90E2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* Legacy blog card (keep for compatibility) */
.blog-card {
  background: #16213E;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(0,206,209,0.3);
}

.blog-card-image { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 18px; }
.blog-card-title { font-size: 20px; font-weight: bold; color: white; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 14px; color: #B0B0B0; line-height: 20px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 12px; border-top: 1px solid rgba(0,206,209,0.2); }

/* Uzman Portalı / Education Videos */
.page-container.edu-layout {
  overflow: hidden;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.edu-page {
  background: #1A1A2E;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.edu-header {
  background: #16213E;
  padding: 16px 20px;
  border-bottom: 2px solid #8B5CF6;
  flex-shrink: 0;
}

.edu-header-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 5px;
}

.edu-header-subtitle {
  font-size: 14px;
  color: #B0B0B0;
  margin: 0;
}

.edu-main {
  flex: 1;
  display: flex;
  flex-direction: row;
  min-height: 0;
  overflow: hidden;
}

.edu-sidebar {
  width: 32%;
  min-width: 110px;
  max-width: 140px;
  background: #16213E;
  border-right: 2px solid #8B5CF6;
  box-shadow: 4px 0 8px rgba(139,92,246,0.3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.edu-sidebar-inner {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.edu-category-item {
  width: 100%;
  display: block;
  padding: 18px 15px;
  border: none;
  border-bottom: 1px solid rgba(139,92,246,0.2);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.edu-category-text {
  font-size: 13px;
  color: #B0B0B0;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.edu-category-gradient {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #8B5CF6, #00CED1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.edu-category-gradient .material-icons {
  font-size: 16px;
  flex-shrink: 0;
}

.edu-videos {
  flex: 1;
  min-width: 0;
  background: #0F0F1E;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 10px;
}

.edu-video-card {
  background: #16213E;
  margin: 12px;
  margin-bottom: 15px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(139,92,246,0.3);
  box-shadow: 0 4px 8px rgba(139,92,246,0.3);
  cursor: pointer;
}

.edu-thumb-wrap {
  position: relative;
  height: 180px;
  background: #0F0F1E;
}

.edu-thumb-video, .edu-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  display: block;
  pointer-events: none;
}

.edu-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(139,92,246,0.9);
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.edu-play-btn .material-icons { font-size: 36px; margin-left: 4px; }

.edu-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #8B5CF6;
}

.edu-video-info { padding: 18px; }

.edu-video-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.edu-video-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  line-height: 22px;
  flex: 1;
}

.edu-category-badge {
  background: #8B5CF6;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #00CED1;
  white-space: nowrap;
}

.edu-video-desc {
  font-size: 13px;
  color: #B0B0B0;
  line-height: 20px;
  margin: 0 0 15px;
}

.edu-detailed-info {
  margin-top: 15px;
  padding: 18px;
  background: rgba(139,92,246,0.15);
  border-radius: 12px;
  border-left: 5px solid #8B5CF6;
  border: 1px solid rgba(139,92,246,0.3);
}

.edu-detailed-title {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  margin: 12px 0 10px;
}

.edu-detailed-title:first-child { margin-top: 0; }

.edu-detailed-text {
  font-size: 13px;
  color: #E0E0E0;
  line-height: 22px;
  margin: 0 0 8px;
}

.edu-empty {
  text-align: center;
  padding: 60px 20px;
  color: #B0B0B0;
}

.edu-empty .material-icons { font-size: 64px; color: #8B5CF6; display: block; margin-bottom: 16px; }

.edu-video-modal {
  position: fixed;
  inset: 0;
  background: #0F0F1E;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.edu-video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  padding-top: max(16px, env(safe-area-inset-top));
  background: #16213E;
  border-bottom: 2px solid #8B5CF6;
}

.edu-video-modal-header h2 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  flex: 1;
  margin-right: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edu-video-modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
}

.edu-video-modal-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.edu-video-modal-body video {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .edu-sidebar {
    max-width: 220px;
  }
}

/* Votes */
.vote-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
}

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

.vote-user { font-size: 13px; color: var(--text-secondary); }
.vote-score { font-size: 14px; font-weight: bold; color: var(--color-gold); }

.stars-container { display: flex; gap: 2px; margin-bottom: 6px; }
.stars-container .material-icons { font-size: 16px; }
.star-filled { color: var(--color-gold); }
.star-empty { color: #666; }

.vote-comment { color: white; font-size: 13px; font-style: italic; margin-top: 4px; }

.average-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  background: rgba(139, 92, 246, 0.2);
  padding: 10px;
  border-radius: 12px;
  display: inline-flex;
}

.average-text { font-size: 16px; font-weight: bold; color: var(--color-gold); }

/* Earnings Page */
.earnings-page { background: #1A1A2E; min-height: 100%; }
.earnings-header {
  padding: 20px;
  background: #16213E;
  border-bottom: 2px solid #4CAF50;
}
.earnings-header-title { font-size: 26px; font-weight: bold; color: #fff; margin: 0 0 5px; }
.earnings-header-subtitle { font-size: 14px; color: #B0B0B0; margin: 0 0 20px; }
.earnings-fiyat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #4CAF50, #00CED1);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px rgba(76,175,80,0.4);
}
.earnings-tl-icon { font-size: 20px; font-weight: bold; }
.earnings-summary-row { display: flex; gap: 10px; }
.earnings-summary-card {
  flex: 1;
  background: #0F0F1E;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  border: 1px solid rgba(76,175,80,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.earnings-summary-label { font-size: 12px; color: #B0B0B0; }
.earnings-summary-value { font-size: 16px; font-weight: bold; color: #fff; }
.earnings-list-container { padding: 16px; }
.earnings-section-title { font-size: 20px; font-weight: bold; color: #fff; margin: 8px 0 16px; }
.earnings-empty { text-align: center; padding: 40px 20px; color: #B0B0B0; }
.earnings-empty .material-icons { font-size: 80px; color: #4CAF50; display: block; margin-bottom: 16px; }
.earnings-empty p { color: #fff; font-size: 16px; margin-bottom: 8px; }
.earnings-history-card {
  background: #16213E;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(76,175,80,0.3);
}
.earnings-history-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(76,175,80,0.2);
  padding: 0 0 12px;
  margin-bottom: 12px;
  cursor: pointer;
  color: #fff;
}
.earnings-client-name { font-size: 18px; font-weight: bold; text-align: left; }
.earnings-header-right { display: flex; align-items: center; gap: 10px; }
.earnings-status-badge { padding: 6px 12px; border-radius: 20px; font-size: 11px; font-weight: bold; }
.earnings-history-details { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 13px; color: #B0B0B0; }
.earnings-duration { color: #00CED1; font-weight: 600; }
.earnings-plan-label { font-size: 13px; color: #B0B0B0; margin-bottom: 12px; opacity: 0.9; }
.earnings-money-breakdown {
  border-top: 1px solid rgba(76,175,80,0.3);
  padding-top: 16px;
  background: rgba(15,15,30,0.5);
  border-radius: 12px;
  padding: 12px;
  margin-top: 8px;
}
.earnings-money-row, .earnings-money-row-vertical {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #B0B0B0;
}
.earnings-money-row-vertical { flex-direction: column; gap: 4px; }
.earnings-money-row span:last-child, .earnings-money-row-vertical span:last-child { color: #fff; font-weight: 600; }
.earnings-net-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2px solid #4CAF50;
  padding-top: 12px;
  margin-top: 8px;
  background: rgba(76,175,80,0.15);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  color: #B0B0B0;
}
.earnings-net-row .highlight { color: #4CAF50; font-size: 18px; font-weight: bold; }
.earnings-calc-divider { height: 1px; background: rgba(76,175,80,0.3); margin: 10px 0; }
.earnings-calculator { margin-top: 16px; background: #0F0F1E; border-radius: 12px; padding: 16px; border: 1px solid rgba(76,175,80,0.2); }
.earnings-calculator-title { font-size: 18px; font-weight: bold; color: #fff; margin-bottom: 16px; text-align: center; }
.earnings-duration-section { margin-bottom: 12px; }
.earnings-duration-title { font-size: 16px; font-weight: bold; color: #8B5CF6; text-align: center; margin-bottom: 12px; }
.earnings-calc-row, .earnings-calc-row-vertical { display: flex; justify-content: space-between; font-size: 13px; color: #B0B0B0; margin-bottom: 8px; }
.earnings-calc-row-vertical { flex-direction: column; gap: 4px; }
.earnings-calc-row span:last-child, .earnings-calc-row-vertical span:last-child { color: #fff; font-weight: 600; }
.earnings-calc-row-vertical.net { background: rgba(76,175,80,0.15); padding: 10px; border-radius: 8px; }
.earnings-calc-row-vertical .highlight { color: #4CAF50; font-size: 16px; }
.earnings-calc-row-vertical .negative, .negative { color: #FF6B6B !important; }
.earnings-calc-row-vertical .positive, .positive { color: #4CAF50 !important; }
.earnings-section-divider { height: 2px; background: rgba(139,92,246,0.4); margin: 16px 0; border-radius: 1px; }
.earnings-pricing-modal { max-width: 480px; }
.earnings-price-label { display: block; font-size: 14px; font-weight: 600; color: #B0B0B0; margin: 12px 0 8px; }
.earnings-price-input { background: #0A0E27 !important; color: #fff !important; border: 2px solid #8B5CF6 !important; }
.earnings-price-input.disabled { opacity: 0.7; }
.earnings-error-text { color: #FF6B6B; font-size: 13px; min-height: 18px; }
.earnings-info-text { color: #B0B0B0; font-size: 12px; line-height: 1.5; margin: 8px 0; }
.earnings-modal-cancel { background: linear-gradient(90deg, #FF6B6B, #FF8E53) !important; color: #fff !important; border: none !important; }

/* Paket Satın Al Page */
.paket-page {
  padding: 20px;
  padding-bottom: 90px;
  background: #0A0E27;
  min-height: 100%;
}

.paket-page-title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

@keyframes paket-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.paket-blink, .blink { animation: paket-blink 2s ease-in-out infinite; }

.paket-accordion {
  background: #1A1F3A;
  border-radius: 20px;
  padding: 20px 25px;
  margin-bottom: 20px;
  border: 2px solid;
  cursor: pointer;
  color: #E0E0E0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: box-shadow 0.2s;
}

.paket-accordion.standart {
  border-color: #00CED1;
  border-left-width: 6px;
  box-shadow: 0 4px 8px rgba(0,206,209,0.25);
}

.paket-accordion.pro {
  border-color: #FFD700;
  border-left-width: 6px;
  box-shadow: 0 4px 8px rgba(255,215,0,0.25);
}

.paket-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-header-text { flex: 1; }

.plan-badge {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.plan-badge.cyan { color: #00CED1; }
.plan-badge.gold { color: #FFD700; }

.plan-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #E0E0E0;
}

.pct-cyan { color: #00CED1; font-weight: bold; font-size: 18px; }
.pct-gold {
  color: #FFD700;
  font-weight: bold;
  font-size: 22px;
  text-shadow: 0 0 12px rgba(255,215,0,0.8);
  letter-spacing: 1px;
}

.highlight-cyan { color: #00CED1; font-weight: bold; }
.highlight-green { color: #4CAF50; font-weight: bold; }

.paket-avantaj-list { margin-top: 16px; cursor: default; }
.paket-avantaj-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #E0E0E0;
}

.paket-avantaj-item .material-icons { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.paket-avantaj-footer {
  font-size: 16px;
  font-weight: 600;
  color: #8B5CF6;
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 15px;
  line-height: 24px;
}

.paket-avantaj-signature {
  font-size: 14px;
  font-weight: 500;
  color: #00CED1;
  text-align: right;
  font-style: italic;
  margin-top: 10px;
}

.paket-oran-banner {
  text-align: center;
  padding: 14px 20px;
  margin-bottom: 20px;
  background: rgba(0,206,209,0.15);
  border: 2px solid rgba(0,206,209,0.5);
  border-radius: 16px;
  color: #E0E0E0;
  font-size: 18px;
  font-weight: 600;
}

.paket-oran-banner.pro-active {
  background: rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.5);
}

.paket-oran-banner strong {
  color: #00CED1;
  font-size: 24px;
  text-shadow: 0 0 10px rgba(0,206,209,0.9);
  letter-spacing: 1px;
}

.paket-oran-banner.pro-active strong {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.9);
}

.paket-two-column {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.paket-column-card {
  flex: 1;
  min-width: 0;
  background: #1A1F3A;
  border-radius: 20px;
  padding: 20px;
  border: 2px solid #8B5CF6;
  text-align: center;
  box-shadow: 0 3px 6px rgba(139,92,246,0.3);
}

.paket-column-card.pro-card {
  border-color: #8B5CF6;
}

.paket-column-label { font-size: 14px; color: #B0B0B0; margin-bottom: 10px; font-weight: 500; }
.paket-column-value { font-size: 36px; font-weight: bold; margin-bottom: 8px; letter-spacing: 1px; }
.paket-column-info { font-size: 12px; color: #00CED1; font-style: italic; margin-bottom: 15px; font-weight: 500; }

.paket-kar-olcer-box {
  width: 100%;
  text-align: left;
  margin-top: 15px;
}

.paket-kar-olcer-box.card-inner {
  background: #1A1F3A;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(139,92,246,0.2);
  margin-bottom: 0;
}

.paket-kar-title { font-size: 18px; font-weight: bold; color: #fff; margin-bottom: 8px; }
.paket-kar-subtitle { font-size: 13px; color: #B0B0B0; margin-bottom: 15px; }

.paket-input-wrap {
  display: flex;
  align-items: center;
  background: #0A0E27;
  border: 2px solid #8B5CF6;
  border-radius: 12px;
  padding: 0 15px;
  margin-bottom: 15px;
}

.paket-input-wrap.modal {
  padding: 15px 20px;
  border-radius: 16px;
}

.paket-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  min-width: 0;
}

.paket-input-wrap.modal input { font-size: 20px; font-weight: 600; padding: 0; }

.paket-input-wrap span { color: #8B5CF6; font-weight: 600; margin-left: 8px; }

.paket-kar-result {
  background: #0A0E27;
  border-radius: 12px;
  padding: 18px;
  border-left: 4px solid #00CED1;
  border: 1px solid rgba(0,206,209,0.2);
}

.paket-kazanc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
}

.paket-duration-title {
  font-size: 16px;
  font-weight: bold;
  color: #8B5CF6;
  flex: 1;
}

.paket-info-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #00CED1;
  padding: 5px;
  display: flex;
  align-items: center;
}

.paket-kazanc-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.paket-kazanc-label-bold {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 16px;
}

.paket-kazanc-main strong {
  font-size: 20px;
  color: #FFD700;
  font-weight: bold;
}

.paket-detay-container {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(139,92,246,0.3);
}

.paket-kazanc-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #B0B0B0;
  line-height: 16px;
}

.paket-kazanc-row .negative { color: #FF6B6B; font-weight: 600; font-size: 15px; }
.paket-kazanc-row .gold { color: #FFD700; font-weight: bold; font-size: 16px; }
.paket-kazanc-row .cyan-val { color: #00CED1; font-weight: bold; font-size: 16px; }

.paket-divider { height: 1px; background: rgba(139,92,246,0.3); margin: 10px 0; }
.paket-section-divider { height: 2px; background: rgba(139,92,246,0.4); margin: 16px 0; border-radius: 1px; }
.paket-duration-section { margin-bottom: 15px; }

.paket-card {
  background: #1A1F3A;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(139,92,246,0.2);
  box-shadow: 0 4px 8px rgba(139,92,246,0.3);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.paket-card.six-month {
  background: #1F1B3A;
  border-left: 5px solid #8B5CF6;
  border-color: rgba(139,92,246,0.4);
}

.paket-card.twelve-month {
  background: #1A2F3A;
  border-left: 5px solid #00CED1;
  border-color: rgba(0,206,209,0.5);
  box-shadow: 0 4px 8px rgba(0,206,209,0.4);
}

.paket-card.selected {
  border: 3px solid #8B5CF6;
  box-shadow: 0 4px 12px rgba(139,92,246,0.5);
}

.paket-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(139,92,246,0.2);
}

.paket-card-header h3 {
  font-size: 22px;
  color: #fff;
  margin: 0;
  flex: 1;
  font-weight: bold;
}

.paket-card-price {
  font-size: 28px;
  font-weight: bold;
  color: #8B5CF6;
  letter-spacing: 0.5px;
}

.paket-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
  font-size: 16px;
  color: #B0B0B0;
  font-weight: 500;
}

.paket-card-meta span { display: flex; align-items: center; gap: 4px; }
.paket-card-meta .material-icons { font-size: 16px; }
.paket-card-meta .monthly { color: #00CED1; font-style: italic; font-weight: 600; font-size: 15px; }

.paket-oran-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(139,92,246,0.15);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(139,92,246,0.3);
  color: #8B5CF6;
  font-size: 18px;
  font-weight: bold;
}

.paket-oran-chip .material-icons { color: #4CAF50; font-size: 20px; }

.paket-buy-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #8B5CF6, #00CED1);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 15px;
}

.paket-bottom-info {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1F3A;
  padding: 12px 20px;
  border-top: 1px solid rgba(139,92,246,0.3);
  text-align: center;
  font-size: 12px;
  color: #FFD700;
  font-weight: bold;
  z-index: 10;
}

.paket-modal-overlay {
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  background: #0A0E27 !important;
}

.paket-full-modal {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0A0E27;
}

.paket-full-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-top: max(20px, env(safe-area-inset-top));
  background: #1A1F3A;
  border-bottom: 2px solid #8B5CF6;
}

.paket-full-modal-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  flex: 1;
}

.paket-modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  display: flex;
}

.paket-full-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: 40px;
}

.paket-modal-input-block { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 2px solid rgba(139,92,246,0.3); }
.paket-modal-input-block label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}

.cyan { color: #00CED1; }
.gold { color: #FFD700; }
.green { color: #4CAF50; }
.purple { color: #8B5CF6; }

@media (max-width: 640px) {
  .paket-two-column { flex-direction: column; }
  .paket-column-card { min-width: 100%; }
  .paket-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .paket-card-price { font-size: 24px; }
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content.dark {
  background: var(--bg-secondary);
  border: 2px solid var(--color-purple);
}

.modal-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.modal-content.dark .modal-title { color: white; }

.modal-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  line-height: 20px;
}

.modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.modal-btn-cancel {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  background: #f0f0f0;
  border: none;
  color: #666;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.modal-btn-submit {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  background: var(--gradient-purple-cyan);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  border: 1px solid var(--border-color);
  transition: opacity 0.3s;
}

.toast.hidden { opacity: 0; pointer-events: none; }
.toast.success { border-color: var(--color-green); }
.toast.error { border-color: var(--color-red); }

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.empty-state .material-icons { font-size: 60px; color: var(--color-purple); margin-bottom: 10px; }
.empty-state p { font-size: 16px; color: var(--text-secondary); }

/* Loading */
.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--color-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Utility */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.flex-row { display: flex; align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.w-full { width: 100%; }

/* Legend */
.legend-container {
  padding: 10px 15px;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin: 0 15px 15px;
  border: 1px solid var(--border-color);
}

.legend-row {
  display: flex;
  justify-content: space-around;
  margin: 5px 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.legend-item.active {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.5);
}

.legend-square {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid;
}

.legend-text { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.legend-item.active .legend-text { color: var(--color-purple); font-weight: bold; }

/* Back button */
.back-to-calendar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  margin: 15px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.back-to-calendar .material-icons { color: var(--color-cyan); }

/* Date display */
.date-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  margin: 0 15px 15px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.date-display .material-icons { color: var(--color-cyan); }

/* Pricing modal inputs */
.modal-input {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #E0E0E0;
  font-size: 16px;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.modal-input:focus { border-color: var(--color-purple); }

.modal-code-input {
  text-align: center;
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: bold;
}

.forgot-error-text {
  color: var(--color-red);
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
}

.forgot-link-btn {
  background: none;
  border: none;
  color: var(--color-purple);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
}

/* ========== Canlı görüşme (Agora Web) ========== */
.page-container.video-call-layout {
  overflow: hidden;
}

body.video-call-active .app-header {
  display: none !important;
}

body.video-call-active .page-container {
  padding-top: 0 !important;
  height: 100%;
}

body.video-call-active #page-container,
body.video-call-active .vc-call-page {
  height: 100%;
  max-height: 100%;
}

.vc-page {
  padding: 12px 16px 24px;
  overflow-y: auto;
  height: 100%;
}

.vc-lobby-header {
  position: relative;
  margin-bottom: 16px;
}

.vc-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.vc-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.vc-refresh-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px;
  color: var(--color-cyan);
  cursor: pointer;
}

.vc-create-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.vc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.vc-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.vc-input {
  flex: 1;
  background: #0f1429;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.vc-input:focus {
  border-color: var(--color-purple);
}

.vc-btn-generate {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  background: linear-gradient(135deg, #3498db, #1b4f72);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.vc-btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #5dade2, #2874a6);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.vc-btn-primary:disabled {
  opacity: 0.7;
  cursor: wait;
}

.vc-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-cyan);
}

.vc-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 640px) {
  .vc-lists {
    grid-template-columns: 1fr;
  }
}

.vc-col-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-cyan);
}

.vc-room-list {
  max-height: 280px;
  overflow-y: auto;
}

.vc-room-card {
  background: #12182e;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}

.vc-room-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.vc-room-date,
.vc-room-user {
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
}

.vc-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.vc-badge.active {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.vc-badge.done {
  background: rgba(139, 92, 246, 0.2);
  color: var(--color-purple);
}

.vc-join-btn {
  margin-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.vc-empty {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  padding: 20px 8px;
}

.spinner.small {
  width: 18px;
  height: 18px;
  border-width: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* Aktif görüşme ekranı */
.vc-call-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #111827;
}

.vc-call-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 16px;
  padding-top: calc(var(--safe-area-top) + 12px);
  background: #1e3a8a;
  flex-shrink: 0;
}

.vc-call-title {
  font-size: 18px;
  font-weight: 800;
}

.vc-call-room {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

.vc-call-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.vc-elapsed {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.vc-elapsed.hidden {
  display: none;
}

.vc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.vc-status-dot.waiting {
  background: #f59e0b;
}

.vc-status-dot.online {
  background: #10b981;
}

.vc-status-text {
  font-size: 11px;
  max-width: 140px;
  text-align: right;
}

.vc-video-stage {
  flex: 1;
  position: relative;
  background: #000;
  min-height: 0;
  overflow: hidden;
}

.vc-video-main {
  width: 100%;
  height: 100%;
  position: relative;
  background: #1f2937;
}

.vc-video-main video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.vc-waiting-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

.vc-waiting-placeholder.hidden {
  display: none;
}

.vc-waiting-placeholder .material-icons {
  font-size: 64px;
  margin-bottom: 12px;
}

.vc-room-hint {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.7;
}

.vc-pip-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 120px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--color-purple);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 10;
}

.vc-video-pip {
  width: 100%;
  height: 100%;
  background: #374151;
}

.vc-video-pip video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.vc-pip-label {
  position: absolute;
  bottom: 4px;
  left: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
}

.vc-swap-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 16px !important;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 2px;
}

.vc-controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 20px;
  padding-bottom: calc(var(--safe-area-bottom) + 16px);
  background: #1f2937;
  flex-shrink: 0;
}

.vc-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #374151;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.vc-control span:last-child {
  position: absolute;
  bottom: -20px;
  font-size: 10px;
  white-space: nowrap;
  color: var(--text-secondary);
}

.vc-control .material-icons {
  font-size: 26px;
}

.vc-control.active {
  background: rgba(239, 68, 68, 0.3);
}

.vc-control.vc-end {
  background: #ef4444;
}

.vc-control.vc-end .material-icons {
  transform: rotate(135deg;
}
