/*
Theme Name: Flirt Simulator 2.0
Theme URI: https://FlirtSimulator.com
Author: FlirtSimulator.com
Description: A sleek, game-like theme for Flirt Simulator 2.0.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: flirtsimulator-theme
*/

:root{
  --bg: #05060a;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --panel: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --accent: #ff4fd8;
  --accent2: #7c5cff;
  --shadow: 0 20px 80px rgba(0,0,0,0.65);
  --radius: 18px;
}

html,body{ background: var(--bg); color: var(--text); }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.5;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(124,92,255,0.30), transparent 60%),
              radial-gradient(900px 700px at 80% 0%, rgba(255,79,216,0.22), transparent 55%),
              linear-gradient(180deg, #03040a 0%, #070812 40%, #05060a 100%);
  min-height:100vh;
}

a{ color: rgba(255,255,255,0.92); }

a:hover{ color: #fff; }

.fs-wrap{ width: min(1100px, 92vw); margin: 0 auto; }

.fs-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(5,6,10,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.fs-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  min-height: 48px;
}
@media (min-width: 640px){
  .fs-nav{ padding: 12px 0; }
}

.fs-brand{ display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.fs-logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,79,216,0.75), rgba(124,92,255,0.75));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.fs-logo-img{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.fs-brand strong{
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.03em;
}

.fs-links{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 1;
  min-width: 0;
}

/* Simple text-style nav links (replaces big Play/Scores/Credits buttons) */
.fs-nav-link{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.fs-nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.fs-nav-link-primary{
  color: var(--accent);
  font-weight: 600;
}
.fs-nav-link-primary:hover{
  color: #ff6ee0;
}
.fs-nav-credits{
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 480px){
  .fs-nav{ gap: 8px; padding: 8px 0; }
  .fs-brand strong{ font-size: 16px; }
  .fs-logo, .fs-logo-img{ width: 28px; height: 28px; }
  .fs-nav-link{ font-size: 13px; padding: 5px 8px; }
}

.fs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  text-decoration:none;
  font-weight: 650;
}
.fs-btn:hover{ background: rgba(255,255,255,0.09); }
.fs-btn-primary{ border-color: rgba(255,79,216,0.35); background: linear-gradient(90deg, rgba(255,79,216,0.22), rgba(124,92,255,0.20)); }

.fs-hero{
  position: relative;
  padding: 64px 0 42px;
  min-height: 420px;
}
.fs-hero::before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(10,10,20,0.85) 0%, rgba(10,10,20,0.75) 40%, rgba(10,10,20,0.65) 100%),
    url('assets/images/hero-bg.png') center/cover no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}
@media (max-width: 768px){
  .fs-hero::before{ background-attachment: scroll; }
}

/* Full-width hero (homepage) */
.fs-hero-full{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 48px 0 56px;
  min-height: auto;
}
.fs-hero-inner{
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0;
}
.fs-hero-full .fs-hero-lead{
  text-align: center;
  margin: 0 auto;
  max-width: 70ch;
}
.fs-hero-lead-p{
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  margin: 0 0 12px;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.fs-hero-full .fs-hero-lead .fs-lead{
  margin-left: auto;
  margin-right: auto;
}
.fs-hero-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.fs-hero-disclaimer{
  margin-top: 14px !important;
  font-size: 13.5px !important;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* Slider sections */
.fs-hero-slider-section{
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fs-slider-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 2px;
}
.fs-slider-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.fs-btn-sm{
  padding: 8px 12px;
  font-size: 13px;
}
.fs-slider{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 12px;
  scrollbar-width: thin;
}
.fs-slider::-webkit-scrollbar{
  height: 6px;
}
.fs-slider::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}
.fs-slider::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}
.fs-slider-card{
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.fs-slider-chars .fs-slider-card{
  width: 140px;
}
.fs-slider-chars .fs-slider-card img{
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.fs-slider-card-label{
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fs-slider-venues .fs-slider-card{
  width: 180px;
}
.fs-venue-card{
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, background 0.2s;
}
.fs-venue-card:hover{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.fs-venue-card-img{
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.fs-venue-card-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-venue-card-body{
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fs-venue-card-body strong{
  font-size: 14px;
}
.fs-venue-card-body span{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

/* Mobile: homepage centered content, smaller sliders, friendly layout */
@media (max-width: 640px){
  .fs-hero-full{
    padding: 28px 0 36px;
    margin-left: 0;
    width: 100%;
  }
  .fs-hero-inner{
    width: min(1100px, 92vw);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .fs-hero-full .fs-hero-lead{
    text-align: center;
  }
  .fs-hero-h1{ font-size: clamp(32px, 8vw, 42px); }
  .fs-hero-lead-p{ font-size: 16px; }
  .fs-hero-cta{ gap: 8px; margin-top: 12px; }
  .fs-hero-disclaimer{ font-size: 12px !important; }
  .fs-hero-slider-section{
    margin-top: 28px;
    padding-top: 20px;
  }
  .fs-slider-header{ margin-bottom: 10px; }
  .fs-slider-title{ font-size: 16px; }
  .fs-slider-chars .fs-slider-card{ width: 100px; min-width: 100px; }
  .fs-slider-chars .fs-slider-card img{ aspect-ratio: 3/4; }
  .fs-slider-card-label{ font-size: 12px; margin-top: 6px; }
  .fs-slider-venues .fs-slider-card{ width: 140px; min-width: 140px; }
  .fs-venue-card-body{ padding: 8px 10px; }
  .fs-venue-card-body strong{ font-size: 13px; }
  .fs-venue-card-body span{ font-size: 11px; }
  .fs-slider{ gap: 10px; padding: 4px 0 10px; }
}

@media (max-width: 400px){
  .fs-slider-chars .fs-slider-card{ width: 88px; min-width: 88px; }
  .fs-slider-venues .fs-slider-card{ width: 120px; min-width: 120px; }
}

/* Character profile — dating-app style */
.fs-character-profile{
  padding: 24px 0 56px;
  min-height: 60vh;
}
.fs-character-profile-inner{
  width: min(720px, 92vw);
  margin: 0 auto;
}
.fs-character-profile-card{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
@media (max-width: 680px){
  .fs-character-profile-card{
    grid-template-columns: 1fr;
  }
}
.fs-character-profile-photo{
  position: relative;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.fs-character-profile-photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-character-profile-photo-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,79,216,0.15), rgba(124,92,255,0.15));
  font-size: 72px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.04em;
}
.fs-character-badge{
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.fs-character-badge-retired{
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.fs-character-profile-main{
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fs-character-profile-header{
  margin-bottom: 4px;
}
.fs-character-name{
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: #fff;
}
.fs-character-tagline{
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 6px;
  line-height: 1.4;
}
.fs-character-venue{
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.fs-character-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--muted);
}
.fs-character-meta-item{
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.fs-character-bio,
.fs-character-about{
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}
.fs-character-bio p,
.fs-character-about p{
  margin: 0 0 10px;
}
.fs-character-bio p:last-child,
.fs-character-about p:last-child{
  margin-bottom: 0;
}
.fs-character-goals{
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,79,216,0.08);
  border: 1px solid rgba(255,79,216,0.2);
}
.fs-character-goals strong{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 6px;
}
.fs-character-goals p{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
}
.fs-character-vibe,
.fs-character-section{
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.fs-character-vibe strong,
.fs-character-section strong{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
}
.fs-character-vibe-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fs-character-vibe-list span{
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.fs-character-section p{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.fs-character-cta{
  margin-top: 8px;
}
.fs-character-cta .fs-btn{
  padding: 14px 24px;
  font-size: 16px;
  min-width: 180px;
}
.fs-character-cta .fs2-approach-btn{
  color: #fff;
  cursor: pointer;
}
.fs-character-cta .fs-btn-primary{
  color: #fff;
}
.fs-character-admin{
  margin-top: 32px;
  padding-top: 24px;
}
.fs-character-admin pre{
  white-space: pre-wrap;
  background: rgba(0,0,0,0.3);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.84);
  font-size: 12px;
  overflow-x: auto;
}

/* Venue profile — full-screen fixed background */
.fs-venue-profile{
  position: relative;
  min-height: 100vh;
  padding: 24px 0 56px;
}
.fs-venue-profile.fs-venue-has-bg::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--fs-venue-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
@media (max-width: 768px){
  .fs-venue-profile.fs-venue-has-bg::before{
    background-attachment: scroll;
  }
}
.fs-venue-profile.fs-venue-has-bg::after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5,6,12,0.75) 0%, rgba(5,6,12,0.85) 40%, rgba(5,6,12,0.95) 100%);
  z-index: -1;
  pointer-events: none;
}
.fs-venue-profile-scroll{
  position: relative;
  z-index: 1;
}
.fs-venue-profile-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}
.fs-venue-profile-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 28px 28px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.fs-venue-title{
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
}
.fs-venue-tagline{
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.4;
}
.fs-venue-content{
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.fs-venue-content p{
  margin: 0 0 12px;
}
.fs-venue-chars-heading{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.fs2-portal-card-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Venue page: Approach button inside card, anchored to bottom */
.fs2-venue-character-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: default;
}
.fs2-venue-character-card .fs2-portal-card-link{
  cursor: pointer;
}
.fs2-venue-character-card .fs2-portal-card-link{
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.fs2-venue-character-card .fs2-portal-card-body{
  flex: 1;
}
.fs2-venue-character-card .fs2-venue-approach-btn{
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  margin-top: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  border-radius: 0 0 16px 16px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.fs-hero-card{
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
}

/* Left hero content: no glass panel, text directly on background */
.fs-hero-lead{
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  align-self: center;
}
.fs-hero-h1{
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.fs-h1{ font-size: clamp(34px, 4.2vw, 52px); line-height: 1.06; margin: 0 0 10px; letter-spacing:-0.03em; }
.fs-lead{ color: var(--muted); font-size: 16px; margin: 0 0 16px; max-width: 54ch; }

.fs-kbd{ display:inline-flex; gap:8px; align-items:center; border:1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.25); border-radius: 999px; padding: 8px 12px; color: var(--muted); font-size: 13px; }

.fs-section{ padding: 10px 0 56px; }
.fs-section h2{ margin: 0 0 12px; letter-spacing: -0.02em; }
.fs-grid{ display:grid; grid-template-columns: repeat( auto-fit, minmax(240px, 1fr)); gap: 14px; }

.fs-feature{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 16px;
}
.fs-feature h3{ margin: 0 0 8px; font-size: 16px; }
.fs-feature p{ margin:0; color: var(--muted); font-size: 13.5px; }

.fs-footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 26px 0 40px;
  color: var(--muted);
}

.fs-content{ padding: 28px 0 54px; }

/* Play page: full-width, no double container */
.fs-page-play main.fs-wrap{
  width: 100%;
  max-width: none;
  padding: 0;
}

/* Single venue page: full-width so fixed background shows behind content */
.single-fs_venue main.fs-wrap{
  width: 100%;
  max-width: none;
  padding: 0;
}

/* Chat page: full-width, no hero card or title */
.fs-page-chat main.fs-wrap{
  width: 100%;
  max-width: none;
  padding: 0;
}
.fs-chat-page-wrap{
  padding: 0;
  min-height: 60vh;
}
.fs-play-page{
  padding: 0;
  min-height: 60vh;
}

/* Ensure plugin UI blends with theme */
.fs2-app{ margin: 18px 0; }


/* Header tagline */
.fs-tagline{
  margin-left: 10px;
  font-size: 12px;
  opacity: .75;
  font-weight: 600;
  letter-spacing: .01em;
}

/* How it works steps */
.fs-steps{display:flex; flex-direction:column; gap:12px;}
.fs-steps-horizontal{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.fs-steps-horizontal .fs-step{
  flex: 1 1 280px;
  min-width: 0;
}
@media (max-width: 700px){
  .fs-steps-horizontal{ flex-direction: column; }
}
.fs-step{display:flex; gap:12px; align-items:flex-start; padding:12px; border:1px solid rgba(255,255,255,0.10); border-radius:16px; background: rgba(0,0,0,0.10);}
.fs-step-num{width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:18px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.92); flex:0 0 auto;}
.fs-step h3{margin:0 0 4px; font-size:16px;}
.fs-step-emoji{
  margin-right: 6px;
  font-style: normal;
}
.fs-step p{margin:0; opacity:.9; font-size:14px; line-height:1.4;}

@media (max-width: 640px){
  .fs-section{ padding: 8px 0 40px; }
  .fs-section h2{ font-size: 20px; margin-bottom: 10px; }
  .fs-step{ padding: 10px; }
  .fs-step-num{ width: 36px; height: 36px; font-size: 16px; }
  .fs-step h3{ font-size: 15px; }
  .fs-step p{ font-size: 13px; }
  .fs-hero-card{
    padding: 18px;
    border-radius: 16px;
  }
  .fs-hero-card h2{ font-size: 18px; }
  .fs-hero-card .fs-lead{ font-size: 15px; }
  .fs-hero-card [style*="display:flex"]{ gap: 8px; }
  .fs-btn{ padding: 9px 12px; font-size: 14px; }
}

/* Showcase avatars */
.fs-avatar-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:10px;}
.fs-avatar{display:block; border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04);}
.fs-avatar img{display:block; width:100%; height:86px; object-fit:cover;}
@media (min-width: 960px){
  .fs-avatar img{height:96px;}
}
