/* =============================================
   FOMOPRESS - FRONTEND STYLES
   Extracted from notifications-combined.html
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

/* ===== CSS VARIABLES ===== */

:root {
  --fomo-notif-bg: #ffffff;
  --fomo-notif-text: #1a1a2e;
  --fomo-notif-accent: #667eea;
  --fomo-notif-secondary: #764ba2;
  --fomo-notif-gradient: linear-gradient(135deg, var(--fomo-notif-accent) 0%, var(--fomo-notif-secondary) 100%);
  --fomo-primary-gradient: var(--fomo-notif-gradient);
  --fomo-text-primary: var(--fomo-notif-text);
  --fomo-text-secondary: #6b7280;
  --fomo-surface-white: var(--fomo-notif-bg);
  --fomo-border-light: rgba(0, 0, 0, 0.08);
}

/* ===== CONTAINER BASE ===== */

.fomo-container {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
  pointer-events: none;
}

/* ===== CONTAINER POSITIONS ===== */

/* Desktop */
.fomo-desktop[data-position="bottom-left"] {
  bottom: 30px;
  left: 30px;
  width: 420px;
}
.fomo-desktop[data-position="bottom-center"] {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
}
.fomo-desktop[data-position="bottom-right"] {
  bottom: 30px;
  right: 30px;
  width: 420px;
}
.fomo-desktop[data-position="top-left"] {
  top: 30px;
  left: 30px;
  width: 420px;
}
.fomo-desktop[data-position="top-center"] {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
}
.fomo-desktop[data-position="top-right"] {
  top: 30px;
  right: 30px;
  width: 420px;
}

/* Mobile - hidden on desktop */
.fomo-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .fomo-desktop {
    display: none !important;
  }
  .fomo-mobile {
    display: flex !important;
  }

  .fomo-mobile[data-position="bottom-left"] {
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
  .fomo-mobile[data-position="bottom-center"] {
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
  .fomo-mobile[data-position="bottom-right"] {
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
  .fomo-mobile[data-position="top-left"] {
    top: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
  .fomo-mobile[data-position="top-center"] {
    top: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
  .fomo-mobile[data-position="top-right"] {
    top: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .fomo-mobile[data-position="bottom-left"],
  .fomo-mobile[data-position="bottom-center"],
  .fomo-mobile[data-position="bottom-right"] {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .fomo-mobile[data-position="top-left"],
  .fomo-mobile[data-position="top-center"],
  .fomo-mobile[data-position="top-right"] {
    top: 10px;
    left: 10px;
    right: 10px;
  }
}

/* =========================================================
   STYLE 1: SOCIAL PROOF CARD (Desktop & Responsive Mobile)
   ========================================================= */

.fomo-sp-notification {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--fomo-surface-white);
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow:
    0 4px 20px rgba(102, 126, 234, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  font-family:
    "DM Sans",
    -apple-system,
    sans-serif;
}

.fomo-sp-notification::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15),
    rgba(118, 75, 162, 0.15)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fomo-sp-notification:hover::after {
  opacity: 1;
}

.fomo-sp-notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--fomo-primary-gradient);
}

.fomo-sp-notification:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 8px 30px rgba(102, 126, 234, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(102, 126, 234, 0.1);
}

.fomo-sp-content {
  flex: 1;
  min-width: 0;
}

.fomo-sp-customer-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.fomo-sp-name {
  font-family:
    "DM Sans",
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fomo-text-primary);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fomo-sp-country-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--fomo-notif-gradient);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  box-shadow:
    0 2px 8px rgba(102, 126, 234, 0.25),
    0 1px 2px rgba(102, 126, 234, 0.15);
  animation: fomo-subtle-pulse 3s ease-in-out infinite;
}

@keyframes fomo-subtle-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 2px 8px rgba(102, 126, 234, 0.25),
      0 1px 2px rgba(102, 126, 234, 0.15);
  }
  50% {
    transform: scale(1.03);
    box-shadow:
      0 4px 12px rgba(102, 126, 234, 0.35),
      0 2px 4px rgba(102, 126, 234, 0.2);
  }
}

.fomo-sp-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--fomo-notif-accent) 10%, transparent) 0%,
    color-mix(in srgb, var(--fomo-notif-secondary) 10%, transparent) 100%
  );
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fomo-notif-accent);
  letter-spacing: 0.02em;
}

.fomo-sp-location-icon {
  width: 12px;
  height: 12px;
}

.fomo-sp-purchase {
  font-size: 14px;
  color: var(--fomo-text-secondary);
  margin: 0 0 4px;
  line-height: 1.5;
}

.fomo-sp-product-name {
  font-weight: 600;
  color: var(--fomo-text-primary);
}

.fomo-sp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--fomo-border-light);
}

.fomo-sp-timestamp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fomo-text-secondary);
  font-weight: 500;
}

.fomo-sp-time-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.fomo-sp-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
  white-space: nowrap;
}

.fomo-sp-verified-icon {
  width: 14px;
  height: 14px;
}

.fomo-sp-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.fomo-sp-image {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--fomo-notif-accent) 10%, transparent);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fomo-sp-notification:hover .fomo-sp-image {
  transform: rotate(-5deg) scale(1.08);
  border-color: rgba(102, 126, 234, 0.2);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.fomo-sp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Social Proof Mobile Responsive */
@media (max-width: 768px) {
  .fomo-sp-notification {
    padding: 14px 16px;
    gap: 14px;
    border-radius: 18px;
  }
  .fomo-sp-image {
    width: 65px;
    height: 65px;
    border-radius: 14px;
  }
  .fomo-sp-name {
    font-size: 15px;
  }
  .fomo-sp-country-badge {
    font-size: 12px;
    padding: 3px 10px;
  }
  .fomo-sp-location-badge {
    font-size: 11px;
    padding: 2px 8px;
  }
  .fomo-sp-purchase {
    font-size: 13px;
  }
  .fomo-sp-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .fomo-sp-timestamp {
    font-size: 12px;
  }
  .fomo-sp-verified {
    font-size: 11px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .fomo-sp-notification {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 16px;
  }
  .fomo-sp-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .fomo-sp-name {
    font-size: 14px;
  }
  .fomo-sp-country-badge {
    font-size: 11px;
    padding: 2px 8px;
  }
  .fomo-sp-purchase {
    font-size: 12px;
  }
  .fomo-sp-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
  }
  .fomo-sp-timestamp {
    font-size: 11px;
  }
  .fomo-sp-verified {
    font-size: 10px;
    padding: 2px 8px;
  }
}

@media (max-width: 360px) {
  .fomo-sp-notification {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }
  .fomo-sp-image {
    width: 55px;
    height: 55px;
    border-radius: 10px;
  }
  .fomo-sp-name {
    font-size: 13px;
  }
  .fomo-sp-customer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* =========================================================
   STYLE 2: IPHONE NOTIFICATION
   ========================================================= */

.fomo-ip-notification {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  padding: 12px 14px;
  border-radius: 13px;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.04),
    0 3px 8px rgba(0, 0, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto,
    sans-serif;
}

.fomo-ip-notification:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

.fomo-ip-icon {
  width: 40px;
  height: 40px;
  border-radius: 8.88px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.fomo-ip-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fomo-ip-content {
  flex: 1;
  min-width: 0;
}

.fomo-ip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 18px;
}

.fomo-ip-title {
  font-size: 13px;
  font-weight: 590;
  color: #000;
  letter-spacing: -0.08px;
  line-height: 1.25;
}

.fomo-ip-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  color: #8e8e93;
  flex-shrink: 0;
  margin-left: 8px;
  letter-spacing: -0.08px;
  line-height: 1;
  white-space: nowrap;
}

.fomo-ip-body {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  line-height: 1.33;
  letter-spacing: -0.08px;
  opacity: 0.8;
}

/* iPhone Mobile */
@media (max-width: 768px) {
  .fomo-ip-notification {
    padding: 10px 12px;
  }

  .fomo-ip-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .fomo-ip-title {
    font-size: 12.5px;
  }

  .fomo-ip-time {
    font-size: 12px;
  }

  .fomo-ip-body {
    font-size: 12.5px;
  }
}

@media (max-width: 480px) {
  .fomo-ip-notification {
    padding: 9px 11px;
    gap: 10px;
  }

  .fomo-ip-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
}

/* =========================================================
   ANIMATIONS - Position-based
   ========================================================= */

/* --- BOTTOM positions: slide UP from bottom --- */
@keyframes fomo-slideInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fomo-slideOutBottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

/* --- TOP positions: slide DOWN from top --- */
@keyframes fomo-slideInTop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fomo-slideOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* --- LEFT positions: slide in from LEFT --- */
@keyframes fomo-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fomo-slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* --- RIGHT positions: slide in from RIGHT --- */
@keyframes fomo-slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fomo-slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Loading bar animation */
@keyframes fomo-loadingBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ===== FLIP for RIGHT positions ===== */
.fomo-container[data-position="bottom-right"] .fomo-sp-notification,
.fomo-container[data-position="top-right"] .fomo-sp-notification {
  flex-direction: row-reverse;
}

.fomo-container[data-position="bottom-right"] .fomo-sp-close,
.fomo-container[data-position="top-right"] .fomo-sp-close {
  right: auto;
  left: 12px;
}

.fomo-container[data-position="bottom-right"] .fomo-sp-meta,
.fomo-container[data-position="top-right"] .fomo-sp-meta {
  flex-direction: row-reverse;
}

/* Flip iPhone for right positions */
.fomo-container[data-position="bottom-right"] .fomo-ip-notification,
.fomo-container[data-position="top-right"] .fomo-ip-notification {
  flex-direction: row-reverse;
}

.fomo-container[data-position="bottom-right"] .fomo-ip-header,
.fomo-container[data-position="top-right"] .fomo-ip-header {
  flex-direction: row-reverse;
}

.fomo-container[data-position="bottom-right"] .fomo-ip-time,
.fomo-container[data-position="top-right"] .fomo-ip-time {
  margin-left: 0;
  margin-right: 8px;
}

.fomo-container[data-position="bottom-right"] .fomo-ip-content,
.fomo-container[data-position="top-right"] .fomo-ip-content {
  text-align: right;
}

/* =========================================================
   STYLE 3: MINIMAL PILL
   ========================================================= */

.fomo-pill-notification {
  display: flex;
  align-items: center;
  background: var(--fomo-notif-bg);
  border: 1px solid var(--fomo-border-light);
  border-radius: 9999px;
  padding: 8px 18px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-pill-notification:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.fomo-pill-icon {
  color: var(--fomo-notif-accent);
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 16px;
}

.fomo-pill-text {
  font-size: 14px;
  color: var(--fomo-notif-text);
}

.fomo-pill-text strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .fomo-pill-notification { padding: 7px 14px; }
  .fomo-pill-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-pill-notification { padding: 6px 12px; }
  .fomo-pill-text { font-size: 12px; }
}

/* =========================================================
   STYLE 4: DARK MODE SLEEK
   ========================================================= */

.fomo-dark-notification {
  display: flex;
  align-items: center;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  border-left: 4px solid var(--fomo-notif-accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 380px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-dark-notification:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.fomo-dark-icon-wrap {
  margin-right: 12px;
  padding: 8px;
  background: color-mix(in srgb, var(--fomo-notif-accent) 20%, transparent);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fomo-dark-icon-wrap svg {
  color: var(--fomo-notif-accent);
  width: 20px;
  height: 20px;
}

.fomo-dark-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.fomo-dark-text {
  font-size: 14px;
  color: #e2e8f0;
}

.fomo-dark-text .fomo-dark-highlight {
  color: var(--fomo-notif-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .fomo-dark-notification { padding: 10px 14px; max-width: 100%; }
  .fomo-dark-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-dark-notification { padding: 9px 12px; }
  .fomo-dark-text { font-size: 12px; }
  .fomo-dark-icon-wrap { padding: 6px; }
}

/* =========================================================
   STYLE 5: GLASSMORPHISM
   ========================================================= */

.fomo-glass-notification {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-glass-notification:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.fomo-glass-text {
  font-size: 14px;
  color: var(--fomo-notif-text);
}

.fomo-glass-text strong {
  font-weight: 700;
}

.fomo-glass-time {
  font-size: 10px;
  color: var(--fomo-text-secondary);
  margin-top: 4px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .fomo-glass-notification { padding: 12px 14px; border-radius: 14px; }
  .fomo-glass-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-glass-notification { padding: 10px 12px; border-radius: 12px; }
  .fomo-glass-text { font-size: 12px; }
}

/* =========================================================
   STYLE 6: PRODUCT THUMBNAIL
   ========================================================= */

.fomo-thumb-notification {
  display: flex;
  align-items: center;
  background: var(--fomo-notif-bg);
  border-radius: 14px;
  padding: 8px 16px 8px 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--fomo-border-light);
  max-width: 380px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-thumb-notification:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fomo-thumb-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f1f5f9;
  flex-shrink: 0;
  margin-right: 12px;
  overflow: hidden;
}

.fomo-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fomo-thumb-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fomo-text-secondary);
  margin-bottom: 2px;
}

.fomo-thumb-text {
  font-size: 14px;
  color: var(--fomo-notif-text);
  line-height: 1.3;
}

.fomo-thumb-text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .fomo-thumb-notification { max-width: 100%; padding: 6px 14px 6px 6px; }
  .fomo-thumb-img { width: 42px; height: 42px; }
  .fomo-thumb-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-thumb-notification { padding: 5px 12px 5px 5px; }
  .fomo-thumb-img { width: 38px; height: 38px; border-radius: 8px; }
  .fomo-thumb-text { font-size: 12px; }
}

/* =========================================================
   STYLE 7: CENTERED SOCIAL PROOF
   ========================================================= */

.fomo-centered-notification {
  text-align: center;
  padding: 16px 24px;
  border-radius: 18px;
  background: var(--fomo-notif-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--fomo-border-light);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-centered-notification:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.fomo-centered-icon {
  color: var(--fomo-notif-accent);
  margin-bottom: 6px;
  font-size: 24px;
}

.fomo-centered-text {
  font-size: 14px;
  color: var(--fomo-text-secondary);
  line-height: 1.5;
}

.fomo-centered-text strong {
  font-weight: 700;
  color: var(--fomo-notif-text);
}

@media (max-width: 768px) {
  .fomo-centered-notification { padding: 14px 20px; border-radius: 16px; }
  .fomo-centered-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-centered-notification { padding: 12px 16px; border-radius: 14px; }
  .fomo-centered-text { font-size: 12px; }
}

/* =========================================================
   STYLE 8: BORDER-ACCENTED
   ========================================================= */

.fomo-border-notification {
  background: var(--fomo-notif-bg);
  border-left: 6px solid var(--fomo-notif-accent);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 380px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-border-notification:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fomo-border-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--fomo-notif-text);
  line-height: 1.4;
}

.fomo-border-meta {
  font-size: 12px;
  color: var(--fomo-text-secondary);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .fomo-border-notification { max-width: 100%; padding: 12px 16px; }
  .fomo-border-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-border-notification { padding: 10px 14px; }
  .fomo-border-text { font-size: 12px; }
  .fomo-border-meta { font-size: 11px; }
}

/* =========================================================
   STYLE 9: SHADOW-HEAVY
   ========================================================= */

.fomo-shadow-notification {
  background: var(--fomo-notif-bg);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.03);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-shadow-notification:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

.fomo-shadow-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fomo-shadow-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: fomo-subtle-pulse 2s ease-in-out infinite;
}

.fomo-shadow-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--fomo-notif-text);
}

@media (max-width: 768px) {
  .fomo-shadow-notification { padding: 14px 16px; border-radius: 12px; }
  .fomo-shadow-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-shadow-notification { padding: 12px 14px; }
  .fomo-shadow-text { font-size: 12px; }
}

/* =========================================================
   STYLE 10: HIGH CONTRAST
   ========================================================= */

.fomo-contrast-notification {
  background: var(--fomo-notif-accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-contrast-notification:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fomo-contrast-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.fomo-contrast-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 2px;
}

.fomo-contrast-text {
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .fomo-contrast-notification { padding: 12px 16px; gap: 12px; }
  .fomo-contrast-text { font-size: 13px; }
  .fomo-contrast-icon { font-size: 24px; }
}
@media (max-width: 480px) {
  .fomo-contrast-notification { padding: 10px 14px; gap: 10px; }
  .fomo-contrast-text { font-size: 12px; }
  .fomo-contrast-icon { font-size: 20px; }
}

/* =========================================================
   STYLE 11: ULTRA-COMPACT
   ========================================================= */

.fomo-compact-notification {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid var(--fomo-border-light);
  border-radius: 6px;
  padding: 4px 10px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-compact-notification:hover {
  background: #e2e8f0;
}

.fomo-compact-text {
  font-size: 11px;
  color: var(--fomo-text-secondary);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .fomo-compact-notification { padding: 3px 8px; }
  .fomo-compact-text { font-size: 10px; }
}

/* =========================================================
   STYLE 12: MODERN GRADIENT
   ========================================================= */

.fomo-gradient-notification {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--fomo-notif-accent) 8%, var(--fomo-notif-bg)),
    var(--fomo-notif-bg),
    color-mix(in srgb, var(--fomo-notif-accent) 4%, var(--fomo-notif-bg))
  );
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--fomo-notif-accent) 20%, transparent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", -apple-system, sans-serif;
}

.fomo-gradient-notification:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.fomo-gradient-notification::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -16px;
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--fomo-notif-accent) 10%, transparent);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.fomo-gradient-content {
  position: relative;
  z-index: 1;
}

.fomo-gradient-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--fomo-notif-text);
  line-height: 1.4;
}

.fomo-gradient-text .fomo-gradient-accent {
  color: var(--fomo-notif-accent);
  font-weight: 700;
}

.fomo-gradient-text em {
  font-style: italic;
}

.fomo-gradient-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--fomo-text-secondary);
}

.fomo-gradient-location svg {
  color: var(--fomo-notif-accent);
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {
  .fomo-gradient-notification { padding: 12px 16px; border-radius: 16px; }
  .fomo-gradient-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .fomo-gradient-notification { padding: 10px 14px; border-radius: 14px; }
  .fomo-gradient-text { font-size: 12px; }
  .fomo-gradient-location { font-size: 10px; }
}
