/* CSS Custom Properties - Anchored Ocean Theme with Glassmorphism */
:root {
  /* Backdrop blur for glassmorphism effect */
  --backdrop-blur: 20px;

  /* Ocean Theme Color Palette
   * Primary: Deep ocean blues for stability and depth
   * Secondary: Lighter ocean tones for accents
   * Future: Anchor logo integration planned
   */

  /* Light theme colors (Ocean theme) */
  --bg-primary: rgba(248, 252, 253, 0.78);
  --bg-secondary: rgba(240, 248, 250, 0.86);
  --bg-tertiary: rgba(232, 244, 247, 0.92);
  --bg-overlay: rgba(27, 79, 114, 0.45);
  --text-primary: rgba(27, 79, 114, 0.86);
  --text-secondary: rgba(27, 79, 114, 0.62);
  --text-strong: rgba(27, 79, 114, 0.92);
  --text-muted: rgba(27, 79, 114, 0.48);
  --text-tertiary: rgba(27, 79, 114, 0.38);
  --text-invert: rgba(255, 255, 255, 0.98);
  --accent-primary: #1B4F72;
  --accent-secondary: #2E86AB;
  --border-color: rgba(27, 79, 114, 0.12);
  --shadow-light: rgba(168, 218, 220, 0.5);
  --shadow-dark: rgba(27, 79, 114, 0.12);
  --gradient-bg: linear-gradient(135deg, rgba(168, 218, 220, 0.24), rgba(69, 123, 157, 0.18));

  /* Status colors (Ocean theme) */
  --success-color: #2E8B57;
  --warning-color: #FF8C00;
  --error-color: #DC143C;
  --info-color: #1B4F72;
}

/* Dark mode colors (Deep Ocean theme) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: rgba(15, 35, 50, 0.72);
    --bg-secondary: rgba(20, 45, 65, 0.78);
    --bg-tertiary: rgba(25, 55, 80, 0.84);
    --bg-overlay: rgba(10, 25, 40, 0.6);
    --text-primary: rgba(168, 218, 220, 0.92);
    --text-secondary: rgba(168, 218, 220, 0.72);
    --text-strong: rgba(168, 218, 220, 0.98);
    --text-muted: rgba(168, 218, 220, 0.60);
    --text-tertiary: rgba(168, 218, 220, 0.38);
    --text-invert: rgba(15, 35, 50, 0.92);
    --accent-primary: #2E86AB;
    --accent-secondary: #A8DADC;
    --border-color: rgba(168, 218, 220, 0.1);
    --shadow-light: rgba(168, 218, 220, 0.1);
    --shadow-dark: rgba(10, 25, 40, 0.3);
    --gradient-bg: linear-gradient(135deg, rgba(27, 79, 114, 0.14), rgba(15, 35, 50, 0.1));
  }
}

/* Forced theme overrides */
:root[data-theme="light"] {
  --bg-primary: rgba(255, 255, 255, 0.78);
  --bg-secondary: rgba(255, 255, 255, 0.86);
  --bg-tertiary: rgba(255, 255, 255, 0.92);
  --bg-overlay: rgba(0, 0, 0, 0.45);
  --text-primary: rgba(0, 0, 0, 0.86);
  --text-secondary: rgba(0, 0, 0, 0.62);
  --text-strong: rgba(0, 0, 0, 0.92);
  --text-muted: rgba(0, 0, 0, 0.48);
  --text-tertiary: rgba(0, 0, 0, 0.38);
  --text-invert: rgba(255, 255, 255, 0.98);
  --accent-primary: #007AFF;
  --accent-secondary: #5AC8FA;
  --border-color: rgba(0, 0, 0, 0.12);
  --shadow-light: rgba(255, 255, 255, 0.5);
  --shadow-dark: rgba(0, 0, 0, 0.12);
  --gradient-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.18));
}

:root[data-theme="dark"] {
  --bg-primary: rgba(28, 28, 30, 0.92);
  --bg-secondary: rgba(44, 44, 46, 0.86);
  --bg-tertiary: rgba(58, 58, 60, 0.7);
  --bg-overlay: rgba(28, 28, 30, 0.96);
  --text-primary: rgba(255, 255, 255, 0.84);
  --text-secondary: rgba(255, 255, 255, 0.58);
  --text-tertiary: rgba(255, 255, 255, 0.38);
  --text-invert: rgba(0, 0, 0, 0.92);
  --accent-primary: #0A84FF;
  --accent-secondary: #64D2FF;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-light: rgba(255, 255, 255, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --gradient-bg: linear-gradient(135deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.1));
}

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

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #A8DADC 0%, #457B9D 50%, #1D3557 100%);
  background-attachment: fixed;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
  /* Dynamic viewport height for mobile */
  margin: 0;
  padding: 0;
  /* Don't add safe area padding to body - let app-container handle it */
}

/* Global scrollbar styles */
html {
  height: 100%;
  /* Fix mobile Safari viewport issues */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Mobile Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  body {
    /* Fix Safari background attachment issues */
    background-attachment: scroll;
    /* Prevent overscroll bounce showing white */
    overscroll-behavior: none;
    -webkit-overscroll-behavior: none;
  }

  .app-container {
    /* Fix Safari viewport height issues */
    min-height: -webkit-fill-available;
    /* Prevent Safari bounce scroll showing white */
    overscroll-behavior: none;
    -webkit-overscroll-behavior: none;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* App container scrollbar styles */
.app-container::-webkit-scrollbar {
  width: 8px;
}

.app-container::-webkit-scrollbar-track {
  background: transparent;
}

.app-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.app-container::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Dark mode background gradient (Deep Ocean) */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0F2332 0%, #1B4F72 50%, #0A1A2A 100%);
    background-attachment: fixed;
  }
}

/* App Container with Glassmorphism */
.app-container {
  min-height: 100vh;
  min-height: 100dvh;
  /* Dynamic viewport height for mobile */
  background: var(--bg-primary);
  backdrop-filter: blur(var(--backdrop-blur));
  -webkit-backdrop-filter: blur(var(--backdrop-blur));
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  /* Prevent content from going under mobile browser UI */
  box-sizing: border-box;
}

/* Flexbox layout to push footer to bottom - desktop/tablet only */
@media (min-width: 768px) {
  .app-container {
    display: flex;
    flex-direction: column;
  }
}

/* Nebulous liquid-glass background overlay - DISABLED for footer fix */
.app-container::before {
  /* content: ''; */
  display: none;
}

@media (prefers-color-scheme: dark) {
  .app-container::before {
    background:
      linear-gradient(180deg, rgba(15, 35, 50, 0.14), rgba(10, 25, 40, 0.16)),
      radial-gradient(140px 200px at 16% 10%, rgba(46, 134, 171, 0.22), transparent 60%),
      radial-gradient(160px 140px at 80% 18%, rgba(168, 218, 220, 0.16), transparent 60%),
      radial-gradient(220px 160px at 26% 78%, rgba(69, 123, 157, 0.16), transparent 60%),
      radial-gradient(200px 200px at 86% 86%, rgba(29, 53, 87, 0.18), transparent 60%);
    filter: blur(36px) saturate(125%);
    opacity: 0.9;
  }
}

@keyframes nebulous-flow {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-2%, 1%) rotate(1deg);
  }

  50% {
    transform: translate(1%, -1%) rotate(-0.5deg);
  }

  75% {
    transform: translate(-1%, 2%) rotate(0.5deg);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-strong);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container Layouts */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Spacing */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.m-4 {
  margin: 1rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Color Utilities */
.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.text-strong {
  color: var(--text-strong);
}

.text-success {
  color: var(--success-color);
}

.text-warning {
  color: var(--warning-color);
}

.text-error {
  color: var(--error-color);
}

.text-info {
  color: var(--info-color);
}

/* Comprehensive mobile browser fixes */
@media screen and (max-width: 768px) {
  html {
    /* Force full height and prevent zoom */
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  body {
    /* Prevent white space and ensure full coverage */
    background: linear-gradient(135deg, #A8DADC 0%, #457B9D 50%, #1D3557 100%);
    background-attachment: scroll;
    /* Fixed causes issues on mobile */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport */
    height: -webkit-fill-available;
    /* Safari fallback */
    margin: 0;
    padding: 0;
    /* Prevent Safari zoom and white bars */
    -webkit-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .app-container {
    /* Force exact viewport dimensions */
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport */
    height: -webkit-fill-available;
    /* Safari */
    min-height: unset;
    /* Remove conflicting min-height */
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    /* Prevent content from going behind browser UI */
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
}

/* Chrome mobile specific fixes */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
  .app-container {
    /* Force Chrome to respect full viewport */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* Safari mobile specific fixes */
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 768px) {
    body {
      /* Prevent Safari bounce scroll and white bars */
      overscroll-behavior: none;
      -webkit-overscroll-behavior: none;
      position: fixed;
      width: 100%;
      height: 100%;
    }

    .app-container {
      /* Safari specific positioning */
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch;
    }
  }
}

/* Subscription Management Styles */
.subscription-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1000 !important;
  overflow-y: auto !important;
}

.subscription-modal .modal-content {
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
}

.subscription-plan {
  padding: 0;
}

.plan-header {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.plan-header h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-strong);
  font-size: 1.5rem;
  font-weight: 600;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.plan-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.plan-features {
  margin-bottom: 2rem;
}

.plan-features h5 {
  margin: 0 0 1rem 0;
  color: var(--text-strong);
  font-size: 1.1rem;
  font-weight: 600;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  font-size: 1rem;
}

.plan-comparison {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(var(--backdrop-blur));
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.5rem 0;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row .feature {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-row .free-value {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  min-width: 40px;
}

.comparison-row .premium-value {
  color: var(--success-color);
  font-weight: 600;
  text-align: center;
  min-width: 40px;
}

.plan-actions {
  text-align: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  margin-bottom: 1rem;
}

.subscription-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Subscription Status Styles */
.subscription-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.free {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.status-badge.premium {
  background: linear-gradient(135deg, var(--success-color), #20B2AA);
  color: white;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.3);
}

.status-details {
  flex: 1;
}

.status-details p {
  margin: 0;
  color: var(--text-primary);
}

.status-details p:first-child {
  font-weight: 500;
}

.status-details p:last-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.subscription-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.subscription-actions .btn-primary,
.subscription-actions .btn-secondary {
  flex: 1;
}

/* Feature Lists */
.free-features,
.premium-features {
  margin-bottom: 2rem;
}

.free-features h4,
.premium-features h4 {
  color: var(--text-strong);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.premium-features h4 {
  color: var(--accent-primary);
}

.free-features ul,
.premium-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.free-features li,
.premium-features li {
  padding: 0.4rem 0;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.premium-features li {
  color: var(--accent-primary);
  font-weight: 500;
}

/* Error and Success Messages */
.error-message,
.success-message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.9rem;
  display: none;
}

.error-message {
  background: rgba(220, 20, 60, 0.1);
  color: var(--error-color);
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.success-message {
  background: rgba(46, 139, 87, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

/* Responsive Design for Subscription Modal */
@media (max-width: 768px) {
  .subscription-modal .modal-content {
    width: 95%;
    margin: 1rem;
  }

  .plan-price .price {
    font-size: 2rem;
  }

  .subscription-actions {
    flex-direction: column;
  }

  .comparison-row {
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
}

/* Upgrade 
Banner Styles */
.upgrade-banner {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upgrade-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.upgrade-message h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.upgrade-message p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.upgrade-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.upgrade-actions .btn-primary {
  background: white;
  color: var(--accent-primary);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.upgrade-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.upgrade-actions .btn-text {
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  text-decoration: underline;
  font-size: 0.85rem;
  padding: 0.5rem;
}

.upgrade-actions .btn-text:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* Responsive upgrade banner */
@media (max-width: 768px) {
  .upgrade-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .upgrade-actions {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .upgrade-actions .btn-primary {
    width: 100%;
  }
}

/* Detailed Subscription Information Styles */
.subscription-details {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(var(--backdrop-blur));
  border: 1px solid var(--border-color);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.detail-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  text-align: right;
}

/* AI Usage specific styling */
.detail-row .detail-value[id="aiUsageInfo"] {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
}

/* Subscription actions enhancement */
.subscription-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.subscription-actions .btn-primary,
.subscription-actions .btn-secondary {
  flex: 1;
  min-width: 150px;
}

/* Responsive design for subscription details */
@media (max-width: 768px) {
  .subscription-details {
    padding: 1rem;
    margin: 1rem 0;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.5rem 0;
  }

  .detail-value {
    text-align: left;
    font-size: 0.85rem;
  }

  .subscription-actions {
    flex-direction: column;
  }

  .subscription-actions .btn-primary,
  .subscription-actions .btn-secondary {
    width: 100%;
  }
}/* Payme
nt Success/Error Messages */
.success-message {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
}

.success-message h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.success-message p {
  margin: 0;
  opacity: 0.9;
}

.error-message {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(239, 68, 68, 0.1);
}

.error-message h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.error-message p {
  margin: 0;
  opacity: 0.9;
}