/* Elegant Blue Cyberpunk Design - Sponsor My Newsletter */

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

:root {
  /* Heliotrope Color Palette */
  --heliotrope-50: #fbf5ff;
  --heliotrope-100: #f5e8ff;
  --heliotrope-200: #edd4ff;
  --heliotrope-300: #dfb2ff;
  --heliotrope-400: #cc81ff;
  --heliotrope-500: #c065fb;
  --heliotrope-600: #a52fee;
  --heliotrope-700: #8f1ed2;
  --heliotrope-800: #781eab;
  --heliotrope-900: #621a89;
  --heliotrope-950: #440566;
  
  /* Primary Colors */
  --primary: var(--heliotrope-900);
  --primary-light: var(--heliotrope-700);
  --primary-dark: var(--heliotrope-950);
  --primary-subtle: rgba(98, 26, 137, 0.04);
  
  /* Background Colors */
  --background: #ffffff;
  --background-secondary: var(--heliotrope-50);
  --background-tertiary: var(--heliotrope-100);
  
  /* Accent Colors */
  --accent: var(--heliotrope-600);
  --accent-light: var(--heliotrope-500);
  --accent-dark: var(--heliotrope-700);
  --accent-cool: #10b981;
  
  /* Cream Neutrals */
  --cream-50: #fefefe;
  --cream-100: #fdfcf8;
  --cream-200: #f9f5ed;
  --cream-300: #f4efe3;
  --cream-400: #ede4d3;
  --cream-500: #d4c4a8;
  --cream-600: #b8a082;
  --cream-700: #9a7f5f;
  --cream-800: #7a6148;
  --cream-900: #5c472f;
  --cream-light: #fdfcf8;
  
  /* Text Colors */
  --black: #000000;
  --black-subtle: rgba(0, 0, 0, 0.03);
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --foreground: var(--gray-900);
  --foreground-muted: var(--gray-600);
  --foreground-light: var(--gray-500);
  
  /* Semantic Colors */
  --border: var(--heliotrope-200);
  --border-light: var(--heliotrope-100);
  --card: var(--background);
  --card-border: var(--heliotrope-200);
  --card-hover: var(--primary-subtle);
  
  /* Typography */
  --font-mono: 'Inconsolata', 'Monaco', 'Menlo', monospace;
  --font-sans: 'Inconsolata', 'Monaco', 'Menlo', monospace;
  
  /* Heliotrope Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(98, 26, 137, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(98, 26, 137, 0.1), 0 2px 4px -1px rgba(98, 26, 137, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(98, 26, 137, 0.1), 0 4px 6px -2px rgba(98, 26, 137, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(98, 26, 137, 0.12), 0 10px 10px -5px rgba(98, 26, 137, 0.06);
  --shadow-purple: 0 8px 25px rgba(165, 47, 238, 0.15);
  --shadow-glow: 0 0 20px rgba(165, 47, 238, 0.3);
  --shadow-warm: 0 4px 6px -1px rgba(251, 146, 60, 0.1), 0 2px 4px -1px rgba(251, 146, 60, 0.06);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Layout */
  --container-max-width: 1400px;
  --sidebar-width: 180px;
  
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  position: relative;
}


.page-wrapper {
  min-height: 100vh;
  position: relative;
}

/* Typography - Inconsolata Mono */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-6);
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(67, 24, 121, 0.1);
  letter-spacing: 0.02em;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--primary);
  letter-spacing: 0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--primary-light);
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

p {
  color: var(--foreground-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-muted { color: var(--foreground-muted); }

/* Links - Blue Elegance */
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--accent-dark);
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: var(--accent);
  transition: var(--transition);
}

a:hover::after {
  width: 100%;
}

/* Buttons - Premium Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius-lg);
  min-height: 36px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--card-hover);
  border-color: var(--accent);
  color: var(--foreground);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-warm);
}

.btn-sm {
  padding: var(--space-1) var(--space-3);
  font-size: 0.8125rem;
  min-height: 32px;
}

.btn-lg {
  padding: var(--space-3) var(--space-6);
  font-size: 1rem;
  min-height: 44px;
}

.btn-success {
  background: #16a34a;
  color: white;
  border-color: #16a34a;
  box-shadow: var(--shadow-lg);
}

.btn-success:hover {
  background: #15803d;
  border-color: #15803d;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

/* Cards - Cream Elegance */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: var(--space-3);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--black-subtle) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
  transform: scale(0);
}

.card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--primary);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.card-description {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Layout Structure - Wider Table */
.layout-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr var(--sidebar-width);
  gap: var(--space-3);
  align-items: start;
}

.layout-sidebar {
  position: sticky;
  top: calc(var(--space-12) + var(--space-6));
}

.layout-main {
  min-width: 0;
}

/* Header Section - Clean Design */
.main-header {
  text-align: center;
  margin-bottom: var(--space-4);
  padding: var(--space-6) var(--space-4);
  background: var(--card);
  position: relative;
}

.main-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: 
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.015) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.005) 0%, transparent 40%);
  z-index: -1;
}

.main-header h1 {
  margin-bottom: var(--space-3);
  font-size: 2.75rem;
  font-weight: 900;
}

.main-header p {
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto var(--space-4);
  color: var(--foreground-muted);
}

/* Ad Slot Cards - Clickable Cards with Uniform Size */
.ad-slot-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  margin-bottom: var(--space-2);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  min-height: 140px;
  height: 140px;
}

.ad-slot-card:hover {
  text-decoration: none;
  color: inherit;
}

/* Default card background */
.ad-slot-card {
  background: #fef3ff;
}

/* Varied solid color backgrounds */
.ad-slot-card:nth-child(1) {
  background: #e0f2fe;
  border-color: #38bdf8;
}

.ad-slot-card:nth-child(2) {
  background: #fef3c7;
  border-color: #f59e0b;
}

.ad-slot-card:nth-child(3) {
  background: #ddd6fe;
  border-color: var(--heliotrope-600);
}

.ad-slot-card:nth-child(4) {
  background: #fce7f3;
  border-color: #ec4899;
}

.ad-slot-card:nth-child(5) {
  background: #d1fae5;
  border-color: #10b981;
}

.ad-slot-card:nth-child(6) {
  background: #ffe4e6;
  border-color: #f43f5e;
}

.ad-slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.ad-slot-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-slow);
  transform: scale(0);
}

.ad-slot-card:hover::before {
  opacity: 1;
}

.ad-slot-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.ad-slot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.ad-slot-card h3 {
  font-family: var(--font-mono);
  color: var(--primary);
  margin-bottom: 0.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.ad-slot-card p {
  color: var(--foreground-muted);
  font-size: 0.65rem;
  margin-bottom: var(--space-2);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.ad-slot-price {
  font-size: 0.875rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: var(--space-1);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* Tables - Cream Elegance */
.table-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.table th {
  background: var(--heliotrope-50);
  color: var(--primary);
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.table td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--border-light);
  color: var(--foreground);
  vertical-align: middle;
}

.table tbody tr:hover {
  background: var(--black-subtle);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* Navigation - Cream Premium */
.nav {
  background: var(--cream-light);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: var(--space-2) 0;
  box-shadow: var(--shadow-sm);
}

.nav-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-brand:hover {
  transform: scale(1.05);
  text-decoration: none;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Badges - Blue Elegance */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-2);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--foreground-muted);
  border: 1px solid var(--border-light);
}

.badge-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.badge-success {
  background: var(--accent-cool);
  color: var(--black);
  border-color: var(--accent-cool);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: 1px solid #ef4444;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.125rem 0.375rem;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
  animation: subtle-glow-red 2s ease-in-out infinite alternate;
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

@keyframes subtle-glow-red {
  from {
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
  }
  to {
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  }
}

/* Avatar System - Premium Blue */
.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-300);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}

.avatar-sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.625rem;
}

.avatar-lg {
  width: 3rem;
  height: 3rem;
  font-size: 0.875rem;
}

/* Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }

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

/* Responsive Design */
@media (max-width: 1024px) {
  .layout-container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-6) var(--space-4);
  }
  
  .layout-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-content {
    padding: 0 var(--space-4);
  }
  
  .main-header {
    padding: var(--space-6) var(--space-4);
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Focus States */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Animations - Elegant */
.fade-in {
  opacity: 0;
  animation: elegant-fade-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes elegant-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium glow effects */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  filter: blur(8px);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover::after {
  opacity: 0.3;
}

/* Newsletter Modal Styles */
#newsletterModal {
  backdrop-filter: blur(4px);
}

#newsletterModal .modal-content {
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
}

#newsletterModal.hidden {
  opacity: 0;
  visibility: hidden;
}

#newsletterModal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

#newsletterModal:not(.hidden) .modal-content {
  transform: translateY(0);
}

/* Modal Form Styles */
.modal-content input,
.modal-content textarea,
.modal-content select {
  transition: var(--transition);
  font-family: var(--font-mono);
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(125, 49, 236, 0.1);
}

/* Readonly/disabled field styling for auto-populated data */
.modal-content input[readonly],
.modal-content textarea[readonly] {
  background-color: var(--background-secondary);
  border-color: var(--border-light);
  color: var(--foreground-muted);
  cursor: not-allowed;
}

.modal-content select[disabled] {
  background-color: var(--background-secondary);
  border-color: var(--border-light);
  color: var(--foreground-muted);
  cursor: not-allowed;
}

.modal-content .bg-gray-50 {
  background-color: var(--background-secondary);
  border-color: var(--border);
}

/* Provider Logo Styles */
.modal-content img[alt*="logo"] {
  object-fit: contain;
  background: white;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.modal-content img[alt*="logo"]:hover {
  border-color: var(--accent);
}

/* Tab Navigation - Enhanced Visibility */
.modal-content .border-b.border-gray-200 {
  background: var(--background-secondary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: var(--space-2) var(--space-4);
  margin: -1.5rem -1.5rem var(--space-6) -1.5rem;
  border-bottom: 2px solid var(--border);
}

.modal-content nav.flex.space-x-8 {
  justify-content: space-around;
  gap: var(--space-2);
}

.modal-content nav button {
  transition: var(--transition);
  position: relative;
  background: var(--card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  margin-bottom: -2px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  min-width: 120px;
  font-weight: 600;
}

.modal-content nav button:hover {
  background: var(--card-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.modal-content nav button:hover img {
  transform: scale(1.05);
}

.modal-content nav button img {
  transition: transform 0.2s ease;
  border: 1px solid var(--border-light);
  background: white;
}

/* Active tab styling */
.modal-content nav button[class*="border-purple-500"] {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-purple);
  font-weight: 700;
}

.modal-content nav button[class*="border-purple-500"] img {
  border-color: white;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Inactive tab hover state */
.modal-content nav button[class*="border-transparent"]:hover {
  background: var(--primary-subtle);
  border-color: var(--accent-light);
}

/* Advertise Modal Styles */
#advertiseModal {
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#advertiseModal.show {
  opacity: 1;
  visibility: visible;
}

#advertiseModal .modal-content {
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
}

#advertiseModal:not([style*="display: none"]) .modal-content {
  transform: translateY(0);
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .nav,
  .layout-sidebar,
  #newsletterModal,
  #advertiseModal {
    display: none;
  }
}