/* =============================================
   The Digital Enablers — Modern Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Custom Properties --- */
:root {
  --primary:        #0d1b2a;
  --primary-light:  #1e3a5f;
  --accent:         #0077b6;
  --accent-hover:   #023e8a;
  --text:           #2d3748;
  --text-muted:     #718096;
  --bg-light:       #f5f7fa;
  --bg-white:       #ffffff;
  --border:         #e2e8f0;
  --shadow:         0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:      0 20px 25px -5px rgba(0,0,0,.12), 0 10px 10px -5px rgba(0,0,0,.06);
  --radius:         8px;
  --radius-lg:      14px;
  --transition:     all .22s ease;
  --nav-height:     72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img,
.nav-logo svg { height: 38px; width: auto; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
  background: #ebf5fb;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO (Homepage)
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  background-image: url('https://www.thedigitalenablers.com/wp-content/uploads/2018/09/iStock-828435548-copy.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.88) 0%, rgba(30,58,95,.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 0;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,182,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.75); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--primary);
  padding: 96px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.about-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.about-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-5px);
}
.about-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.about-card p {
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  line-height: 1.65;
}

/* =============================================
   ARTICLES GRID
   ============================================= */
.articles-section { background: var(--bg-light); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.article-card-img {
  height: 200px;
  overflow: hidden;
  background: #dde3ea;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
  flex: 1;
}
.article-card-body h3 a { color: var(--text); }
.article-card-body h3 a:hover { color: var(--accent); }
.article-card-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
}
.article-read-more:hover { gap: 10px; }

/* =============================================
   MISSION SECTION
   ============================================= */
.mission-section {
  background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
  color: #fff;
  padding: 88px 0;
  text-align: center;
}
.mission-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.mission-section p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  opacity: .88;
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--primary);
  padding: 56px 0 52px;
  color: #fff;
}
.page-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.page-header .meta {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.page-header .meta a { color: rgba(255,255,255,.85); }
.page-header .meta a:hover { color: #fff; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.78); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }

/* =============================================
   PAGE CONTENT LAYOUT
   ============================================= */
.page-content { padding: 60px 0 80px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}
.main-content { min-width: 0; }

/* Entry content */
.entry-content { line-height: 1.8; font-size: 1.02rem; }
.entry-content p { margin-bottom: 20px; }
.entry-content h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -.02em;
}
.entry-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 30px 0 12px;
}
.entry-content ul, .entry-content ol {
  margin: 16px 0 20px 24px;
}
.entry-content li { margin-bottom: 8px; }
.entry-content hr {
  border: none;
  border-top: 2px solid var(--border);
  margin: 40px 0;
}
.entry-content figure { margin: 28px 0; }
.entry-content figure img { border-radius: var(--radius); }
.entry-content strong a { color: var(--accent); font-weight: 700; }
.entry-content a { color: var(--accent); font-weight: 500; }
.entry-content a:hover { color: var(--accent-hover); }
.clearfix::after { content: ''; display: table; clear: both; }

/* Post meta */
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.post-meta a { color: var(--accent); }
.post-series-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Book entries */
.book-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.book-entry:last-of-type { border-bottom: none; }
.book-entry img {
  width: 160px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.book-entry-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  margin-top: 0;
}
.book-entry-content p { margin-bottom: 14px; color: var(--text); }
.book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #ff9900;
  color: #111 !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 6px;
  transition: var(--transition);
}
.book-link:hover {
  background: #e68900;
  color: #111 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,153,0,.35);
}

/* Games */
.game-entry {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.game-entry:last-of-type { border-bottom: none; }
.game-entry img {
  width: 130px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.game-entry-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
}
.game-entry-content p { margin-bottom: 14px; }
.game-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 22px;
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
}
.badge:hover { transform: translateY(-2px); opacity: .88; }
.badge-ios { background: #000; color: #fff; }
.badge-android { background: #34a853; color: #fff; }
.badge-web { background: var(--accent); color: #fff; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.sidebar-widget {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.sidebar-widget-title {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.sidebar-widget-body { padding: 18px 20px; }
.sidebar-nav-list { display: flex; flex-direction: column; gap: 3px; }
.sidebar-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-nav-list a:hover { color: var(--accent); background: #ebf5fb; }
.sidebar-articles-list { display: flex; flex-direction: column; }
.sidebar-articles-list li { border-bottom: 1px solid var(--border); }
.sidebar-articles-list li:last-child { border-bottom: none; }
.sidebar-articles-list a {
  display: block;
  padding: 11px 0;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}
.sidebar-articles-list a:hover { color: var(--accent); }
.amazon-iframe-wrap { text-align: center; }

/* =============================================
   SUBSCRIBE / CLUB FORM
   ============================================= */
.subscribe-intro {
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
  border: 1px solid #b3d9f5;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 36px;
  font-size: 1.02rem;
  color: var(--text);
}
.subscribe-form { max-width: 540px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 7px;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  transition: var(--transition);
  background: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,119,182,.15);
}
.form-note { font-size: .85rem; color: var(--text-muted); margin: 8px 0 22px; }
.btn-submit {
  padding: 13px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,182,.3);
}

/* =============================================
   ARTICLE POST
   ============================================= */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}
.post-nav-link {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
}
.post-nav-link:hover {
  background: #ebf5fb;
  border-color: var(--accent);
}
.post-nav-direction {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.post-nav-title {
  font-weight: 600;
  color: var(--text);
  font-size: .93rem;
  line-height: 1.4;
}
.post-nav-link:hover .post-nav-title { color: var(--accent); }
.post-nav-next { text-align: right; }

/* Related posts */
.related-posts {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}
.related-posts h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.related-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
}
.related-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.related-item-thumb {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
}
.related-item-title {
  padding: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.related-item:hover .related-item-title { color: var(--accent); }

/* Social sharing */
.social-share {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.social-share h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.social-share-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-share-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .83rem;
  font-weight: 600;
  color: #fff !important;
  transition: var(--transition);
}
.social-share-link:hover { transform: translateY(-2px); opacity: .88; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-li { background: #0a66c2; }
.share-wa { background: #25d366; }
.share-em { background: #555; }
.share-pi { background: #e60023; }
.share-gp { background: #dd4b39; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
  padding: 68px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 20px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 7px; }
.footer-nav-list a {
  color: rgba(255,255,255,.62);
  font-size: .875rem;
  transition: var(--transition);
}
.footer-nav-list a:hover { color: #fff; padding-left: 4px; }
.footer-articles-list { display: flex; flex-direction: column; gap: 10px; }
.footer-articles-list a {
  color: rgba(255,255,255,.62);
  font-size: .85rem;
  line-height: 1.45;
  transition: var(--transition);
}
.footer-articles-list a:hover { color: #fff; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
}
.footer-bottom p { color: rgba(255,255,255,.42); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { position: relative; height: auto; padding: 16px 0; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    gap: 3px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; }
  .nav-toggle { display: flex; }

  .hero { background-attachment: scroll; }
  .hero-content { padding: 52px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .section { padding: 60px 0; }
  .about-section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .book-entry { grid-template-columns: 1fr; }
  .book-entry img { width: 130px; }
  .game-entry { grid-template-columns: 1fr; }
  .game-entry img { width: 110px; }

  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .articles-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SOCIAL FLOAT BAR
   ============================================= */
.social-float-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.social-float-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  font-size: .75rem;
  font-weight: 800;
  color: #fff !important;
  border-radius: 0 6px 6px 0;
  transition: var(--transition);
  opacity: .88;
  text-decoration: none;
}
.social-float-bar a:hover { width: 46px; opacity: 1; }

/* =============================================
   COOKIE NOTICE
   ============================================= */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 500;
  background: var(--primary);
  color: rgba(255,255,255,.85);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .875rem;
  flex-wrap: wrap;
}
.cookie-bar p { flex: 1; min-width: 200px; }
.cookie-bar a { color: #90e0ef; text-decoration: underline; }
.cookie-bar-actions { display: flex; gap: 10px; }
.cookie-accept {
  padding: 7px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--accent-hover); }
.cookie-dismiss {
  padding: 7px 14px;
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  font-size: .875rem;
  cursor: pointer;
}
.cookie-dismiss:hover { color: #fff; border-color: rgba(255,255,255,.7); }

@media (max-width: 768px) {
  .social-float-bar { display: none; }
}
