/* ================================
GORKHA REELS - PREMIUM DARK THEME
Professional Enterprise Design
================================ */

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

:root {
  --primary-red: #dc2626;
  --primary-dark-red: #7f1d1d;
  --accent-gold: #fbbf24;
  --accent-light-gold: #fcd34d;
  --dark-bg: #0f0f0f;
  --dark-card: #1a1a1a;
  --dark-secondary: #242424;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-tertiary: #737373;
  --border-color: #2d2d2d;
  --border-light: #3f3f3f;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============== HEADER ============== */
/* CHANGED: Now transparent/floating over video feed */
header {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  backdrop-filter: none;
  border-bottom: none;
  padding: 16px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}

.header-logo {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

/* header-search removed - replaced with icon button */

.header-actions {
  display: flex;
  gap: 16px;
}

.header-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 22px;
  padding: 8px;
  transition: all 0.3s;
  position: relative;
}

.header-btn:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

/* ============== FEED CONTAINER ============== */
.feed-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 0;
}

.video-card {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 40px 20px 100px 20px;
  color: var(--text-primary);
}

.video-category {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.video-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.video-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.video-hashtags {
  font-size: 13px;
  color: var(--accent-light-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

/* ============== CREATOR INFO ============== */
.creator-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-secondary);
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.creator-details {
  flex: 1;
}

.creator-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.creator-followers {
  font-size: 12px;
  color: var(--text-tertiary);
}

.follow-btn {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.follow-btn.following {
  background: var(--dark-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: none;
}

/* ============== ACTION BUTTONS ============== */
.action-buttons {
  position: absolute;
  right: 16px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.action-btn:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--accent-gold);
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.25);
}

.action-btn.liked {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(153, 27, 0.3) 100%);
  border-color: var(--primary-red);
}

.action-count {
  position: absolute;
  bottom: -26px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  width: 100%;
  text-align: center;
}

/* ============== BOTTOM NAV ============== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 12, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 6px));
  z-index: 50;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border: none;
  background: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 22px;
  transition: color 0.25s ease, transform 0.2s ease;
  flex: 1;
  text-align: center;
  border-radius: 14px;
}

.nav-item.active {
  color: var(--accent-gold);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

.nav-item:active {
  transform: scale(0.88);
}

.nav-item:not(.active):hover {
  color: var(--text-secondary);
}

.nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-item.nav-create {
  flex: 0 0 auto;
}

.nav-item.nav-create .nav-create-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 34px;
  margin-bottom: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-red), #f97316);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-item.nav-create:active .nav-create-btn {
  transform: scale(0.9);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.nav-item.nav-create .nav-label {
  color: var(--text-secondary);
}

/* ============== UPLOAD FORM ============== */
.upload-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.05);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

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

.video-drop-zone {
  border: 2px dashed var(--border-light);
  border-radius: 16px;
  padding: 50px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.video-drop-zone:hover,
.video-drop-zone.dragover {
  border-color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.08);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.video-drop-zone p {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  width: 100%;
  box-shadow: 0 8px 24px rgba(220, 38, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--dark-secondary);
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
}

/* ============== DASHBOARD ============== */
.dashboard-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px;
  padding-bottom: 120px;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 28px;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%);
  object-fit: cover;
  border: 4px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.profile-name {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.profile-bio {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  width: 100%;
  margin-top: 16px;
}

.stat-item {
  text-align: center;
  padding: 14px;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.stat-number {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.earnings-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.earnings-title {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.earnings-amount {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.earnings-breakdown {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.earnings-item {
  flex: 1;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
}

.earnings-value {
  font-size: 16px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ============== LOADING ============== */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  color: var(--text-secondary);
}

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

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

/* ============== RESPONSIVE ============== */
@media (min-width: 768px) {
  header {
    padding: 18px 32px;
  }
  .upload-container,
  .dashboard-container {
    max-width: 620px;
    padding: 32px;
  }
  .video-card {
    max-width: 420px;
    height: 100vh;
    margin: 0 auto;
  }
  .action-buttons {
    right: 28px;
    bottom: 160px;
  }
}

@media (max-width: 360px) {
  .video-title {
    font-size: 20px;
  }
  .action-buttons {
    right: 10px;
    bottom: 110px;
    gap: 16px;
  }
  .action-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .upload-container,
  .dashboard-container {
    padding: 18px;
  }
}

/* ============== TOAST NOTIFICATIONS ============== */
.toast {
  position: fixed;
  bottom: 120px;
  left: 16px;
  right: 16px;
  background: var(--glass-bg);
  color: var(--text-primary);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.toast.success {
  border-left-color: #10b981;
}

.toast.error {
  border-left-color: var(--primary-red);
}

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

/* ============== FULLSCREEN VIDEO STYLES ============== */
.fullscreen-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
}

.fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.fullscreen-header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10001;
}

.fullscreen-logo {
  height: 44px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
}

.fullscreen-actions {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10001;
}

.fullscreen-action-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
  font-size: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fullscreen-action-btn:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: var(--accent-gold);
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

.fullscreen-action-btn.liked {
  background: rgba(220, 38, 0.3);
  border-color: var(--primary-red);
}

.action-icon {
  font-size: 24px;
  margin-bottom: 3px;
}

.action-count {
  font-size: 11px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.exit-btn {
  background: rgba(220, 38, 38, 0.25) !important;
  border-color: var(--primary-red) !important;
  margin-top: 24px;
}

.exit-btn:hover {
  background: rgba(220, 38, 38, 0.4) !important;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3) !important;
}

.fullscreen-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.8) 60%, transparent 100%);
  padding: 50px 24px 30px;
  color: white;
  z-index: 10000;
}

.fullscreen-info h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.fullscreen-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  max-height: 80px;
  overflow: hidden;
}

/* Mobile fullscreen adjustments */
@media (max-width: 768px) {
  .fullscreen-actions {
    width: 100%;
    flex-direction: row;
    right: auto;
    top: auto;
    bottom: 90px;
    left: 0;
    transform: none;
    padding: 0 12px;
    gap: 10px;
    justify-content: center;
  }
  .fullscreen-action-btn {
    width: 54px;
    height: 54px;
  }
  .fullscreen-header {
    top: 14px;
    left: 14px;
  }
  .fullscreen-logo {
    height: 36px;
  }
  .fullscreen-info {
    padding: 40px 16px 20px;
  }
  .fullscreen-info h2 {
    font-size: 18px;
  }
  .fullscreen-info p {
    font-size: 13px;
  }
}

/* ============== CLEAN FULLSCREEN OVERLAY ============== */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.fs-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.fs-header {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10001;
}

.fs-logo {
  height: 40px;
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.fs-actions {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10001;
}

.fs-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.fs-btn:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: var(--accent-gold);
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

.fs-like.liked {
  background: rgba(220, 38, 38, 0.3);
  border-color: var(--primary-red);
}

.fs-exit {
  background: rgba(220, 38, 38, 0.25) !important;
  border-color: var(--primary-red) !important;
  margin-top: 20px;
}

.fs-exit:hover {
  background: rgba(220, 38, 38, 0.4) !important;
}

.fs-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.8) 60%, transparent 100%);
  padding: 50px 24px 30px;
  color: white;
  z-index: 10000;
}

.fs-info h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.fs-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  max-height: 80px;
  overflow: hidden;
}

/* Mobile fullscreen */
@media (max-width: 768px) {
  .fs-actions {
    width: 100%;
    flex-direction: row;
    right: auto;
    top: auto;
    bottom: 90px;
    left: 0;
    transform: none;
    padding: 0 12px;
    gap: 10px;
    justify-content: center;
  }
  .fs-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .fs-header {
    top: 12px;
    left: 12px;
  }
  .fs-logo {
    height: 32px;
  }
  .fs-info {
    padding: 40px 16px 20px;
  }
  .fs-info h2 {
    font-size: 18px;
  }
  .fs-info p {
    font-size: 13px;
  }
}

/* ============== FIX FOR SCREEN ENLARGEMENT ============== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  header {
    padding: 12px 16px !important;
    background: rgba(10,10,10,0.98) !important;
  }
  .header-logo {
    font-size: 18px !important;
    max-height: 36px;
  }
}