/* ===========================
   D&D 5e PHB Theme
   =========================== */

/* @font-face declarations */
@font-face {
  font-family: 'BookInsanity';
  src: url('/fonts/5e/Bookinsanity.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BookInsanity';
  src: url('/fonts/5e/Bookinsanity Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BookInsanity';
  src: url('/fonts/5e/Bookinsanity Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'BookInsanity';
  src: url('/fonts/5e/Bookinsanity Bold Italic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'MrEaves';
  src: url('/fonts/5e/Mr Eaves Small Caps.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ScalySans';
  src: url('/fonts/5e/Scaly Sans.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ScalySans';
  src: url('/fonts/5e/Scaly Sans Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ScalySans';
  src: url('/fonts/5e/Scaly Sans Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ScalySans';
  src: url('/fonts/5e/Scaly Sans Bold Italic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ScalySansCaps';
  src: url('/fonts/5e/Scaly Sans Caps.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NodestoCaps';
  src: url('/fonts/5e/Nodesto Caps Condensed.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NodestoCaps';
  src: url('/fonts/5e/Nodesto Caps Condensed Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NodestoCaps';
  src: url('/fonts/5e/Nodesto Caps Condensed Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'NodestoCaps';
  src: url('/fonts/5e/Nodesto Caps Condensed Bold Italic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Color scheme - D&D PHB parchment */
:root {
  --color-bg: #EEE5CE;
  --color-surface: #FAF7EA;
  --color-accent: #E0E5C1;
  --color-text: #1a1a1a;
  --color-text-muted: #766649;
  --color-heading: #58180D;
  --color-header-underline: #C0AD6A;
  --color-hr: #9C2B1B;
  --color-stat-bg: #F2E5B5;
  --color-border: #C0AD6A;
  --color-link: #58180D;
  --color-link-hover: #9C2B1B;
  --color-highlight: #d4af37;
  --shadow: 1px 4px 14px rgba(0, 0, 0, 0.15);
}

/* Typography */
body {
  font-family: 'BookInsanity', Georgia, serif;
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url('/images/parchmentBackground.jpg');
  background-size: cover;
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: 'MrEaves', 'Copperplate', 'Copperplate Gothic Light', serif;
  color: var(--color-heading);
  line-height: 1.1;
  font-weight: normal;
}

h5, h6 {
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  color: var(--color-text);
  line-height: 1.1;
  font-weight: normal;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

h3 {
  font-size: 1.35rem;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 2px solid var(--color-header-underline);
  padding-bottom: 0.15rem;
}

h4 {
  font-size: 1.1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.15rem;
}

p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  line-height: 1.3;
}

li {
  margin-bottom: 0.15rem;
}


/* Horizontal rules */
hr {
  border: none;
  height: 3px;
  background: var(--color-hr);
  margin: 1rem 0;
  opacity: 0.6;
}

blockquote {
  font-family: 'ScalySans', sans-serif;
  background-color: var(--color-accent);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-hr);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-style: normal;
  color: var(--color-text);
  box-shadow: var(--shadow);
}

blockquote p {
  line-height: 1.3;
}

/* Layout */
.site-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Infobox - Wikipedia-style sidebar */
.infobox {
  float: right;
  width: 280px;
  margin: 0 0 1rem 1.5rem;
  padding: 0;
  background-color: var(--color-stat-bg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
  font-family: 'ScalySans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
}

.infobox-header {
  background-color: var(--color-heading);
  color: var(--color-stat-bg);
  padding: 0.5rem 0.75rem;
  font-family: 'MrEaves', 'Copperplate', serif;
  font-size: 1.25rem;
  text-align: center;
}

.infobox-image {
  width: 100%;
}

.infobox-image img {
  width: 100%;
  display: block;
}

.infobox table {
  width: 100%;
  margin: 0;
  font-size: 0.85rem;
}

.infobox th {
  font-family: 'ScalySans', sans-serif;
  font-weight: bold;
  text-align: right;
  white-space: nowrap;
  padding: 0.3rem 0.5rem;
  width: 35%;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  color: var(--color-text);
}

.infobox td {
  padding: 0.3rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.infobox tbody tr:nth-child(odd) {
  background-color: transparent;
}

.infobox tbody tr:hover {
  background-color: transparent;
}

.infobox-section {
  background-color: var(--color-heading);
  color: var(--color-stat-bg);
  padding: 0.25rem 0.75rem;
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.infobox ul {
  list-style: none;
  padding: 0.3rem 0.5rem;
  margin: 0;
}

.infobox li {
  margin-bottom: 0.15rem;
}

@media (max-width: 640px) {
  .infobox {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
}

/* Navigation */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-header-underline);
}

.site-nav > a {
  display: flex;
  align-items: center;
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--color-heading);
}

.site-nav .nav-dropdown {
  display: flex;
  align-items: center;
}

.site-nav a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}

/* Nav dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--color-heading);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle:hover {
  color: var(--color-link-hover);
}

.nav-dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.7em;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 150px;
  padding: 0.4rem 0;
  background-color: var(--color-stat-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.3rem 0.75rem;
  font-family: 'ScalySans', sans-serif;
  font-size: 0.85rem;
  color: var(--color-heading);
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-accent);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* Content cards/lists */
.content-list {
  list-style: none;
  padding-left: 0;
}

.content-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-header-underline);
}

.content-list li:last-child {
  border-bottom: none;
}

/* Metadata/tags */
.meta {
  font-family: 'ScalySans', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.tag {
  display: inline-block;
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  background-color: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  color: var(--color-text-muted);
}

/* Session cards */
.session-card {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.session-card h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.125rem;
  border-bottom: none;
}

.session-card p {
  margin-bottom: 0;
}

.session-list {
  padding-left: 2rem;
}

.session-list li {
  margin-bottom: 0.5rem;
}

.session-list .meta {
  margin-left: 0.5rem;
}

/* Tables - D&D style */
table {
  font-family: 'ScalySans', sans-serif;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 0.35rem 0.75rem;
  text-align: left;
  border: none;
}

th {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
}

tbody tr:nth-child(odd) {
  background-color: var(--color-accent);
}

tbody tr:hover {
  background-color: var(--color-stat-bg);
}

/* Table thumbnails */
.table-thumb {
  width: 40px;
  padding: 0.25rem;
}

.table-thumb img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
}

/* Status badges */
.status {
  display: inline-block;
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.1rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: var(--color-accent);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* Character portraits */
.character-portrait {
  margin: 1.5rem 0;
  max-width: 300px;
}

.character-portrait img {
  border-radius: 0;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
}

/* Content images (creatures, npcs, locations) */
.content-image {
  margin: 1.5rem 0;
  max-width: 400px;
}

.content-image img {
  border-radius: 0;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
}

/* Artwork gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.artwork-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.artwork-card:hover {
  box-shadow: var(--shadow);
  text-decoration: none;
}

.artwork-thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg);
}

.artwork-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork-thumbnail.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-heading);
}

.video-icon {
  font-size: 2rem;
  color: var(--color-surface);
}

.artwork-card-info {
  padding: 0.75rem;
}

.artwork-card-info h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  border-bottom: none;
}

/* Artwork detail page */
.artwork-detail {
  margin-top: 1rem;
}

.artwork-image {
  margin: 1rem 0;
}

.artwork-image img {
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
}

/* Art viewer (zoom/pan) */
.art-viewer {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
  background: var(--color-bg);
  cursor: grab;
  user-select: none;
  margin: 1rem 0;
}

.art-viewer-surface {
  position: relative;
  width: 100%;
  transform-origin: 0 0;
  will-change: transform;
}

.art-viewer-surface img {
  width: 100%;
  display: block;
}

.art-viewer-controls {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
}

.art-viewer-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-stat-bg);
  color: var(--color-heading);
  font-family: 'ScalySans', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.art-viewer-controls button:hover {
  background: var(--color-accent);
}

.art-viewer-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-viewer-fullscreen .art-viewer-surface {
  max-width: calc(100vh * var(--art-aspect, 1));
  max-height: calc(100vw / var(--art-aspect, 1));
  height: 100%;
}

.artwork-meta {
  margin-bottom: 1rem;
}

.artwork-meta p {
  margin-bottom: 0.25rem;
}

/* Video embeds */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1rem 0;
  border: 2px solid var(--color-border);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Search */
#search-form {
  display: flex;
  margin-left: auto;
  gap: 0.25rem;
}

#search-form input[type="search"] {
  font-family: 'ScalySans', sans-serif;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  width: 10rem;
}

#search-form input[type="search"]::placeholder {
  color: var(--color-text-muted);
}

#search-form input[type="search"]:focus {
  outline: 2px solid var(--color-heading);
  outline-offset: -1px;
}

#search-form button[type="submit"] {
  font-family: 'ScalySansCaps', 'ScalySans', sans-serif;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-heading);
  color: var(--color-stat-bg);
  border: none;
  cursor: pointer;
}

#search-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: default;
}

#search-form button[type="submit"]:hover:not(:disabled) {
  background: var(--color-link-hover);
}

#search-results {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
  width: min(calc(100vw - 2rem), 700px);
  max-height: min(calc(100vh - 4rem), 500px);
  overflow: clip auto;
  scrollbar-width: thin;
  padding: 0 1rem 1rem;
  margin: auto;
}

#search-results::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.search-results-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-surface);
  padding: 1rem 0;
  z-index: 1;
}

.search-results-header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.search-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
}

#search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-status {
  font-family: 'ScalySans', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.search-result {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.search-result:last-child {
  border-bottom: none;
}

.search-result-title {
  font-family: 'MrEaves', 'Copperplate', serif;
  font-size: 1.1rem;
  color: var(--color-link);
  margin-right: 0.5rem;
}

.search-result-title:hover {
  color: var(--color-link-hover);
}

.search-result-snippet {
  font-family: 'ScalySans', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0.25rem 0 0;
  line-height: 1.4;
}

.search-result-snippet mark,
.search-result-title mark {
  background: var(--color-accent);
  color: var(--color-text);
}

.search-filter-select {
  font-family: 'ScalySans', sans-serif;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-stat-bg);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  #search-form {
    flex-basis: 100%;
  }

  #search-form input[type="search"] {
    flex: 1;
  }
}

/* Map — shared pin styles */
.map-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: var(--color-heading);
  border: 2px solid var(--color-stat-bg);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  z-index: 2;
  text-decoration: none;
}

.map-pin:hover {
  background: var(--color-link-hover);
  transform: scale(1.4);
  z-index: 3;
  text-decoration: none;
}

.map-pin-label {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--color-heading);
  color: var(--color-stat-bg);
  font-family: 'ScalySans', sans-serif;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 4px;
  pointer-events: none;
}

.map-pin:hover .map-pin-label {
  display: block;
}

.map-pin.highlighted {
  background: var(--color-highlight);
  border-color: var(--color-surface);
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  box-shadow: 0 0 6px color-mix(in srgb, var(--color-highlight) 60%, transparent);
}

.map-pin.dimmed {
  opacity: 0.3;
}

/* Map — thumbnail link on storyline pages */
.map-thumbnail {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.map-thumbnail:hover {
  text-decoration: none;
}

.map-thumbnail:hover .map-thumbnail-hint {
  opacity: 1;
}

.map-thumbnail .map-pin {
  pointer-events: none;
}

.map-thumbnail-hint {
  display: block;
  text-align: center;
  font-family: 'ScalySans', sans-serif;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

/* Map — full-view zoom/pan viewer */
.map-viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow);
  background: #3a5a5e;
  cursor: grab;
  user-select: none;
}

.map-viewer-surface {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  will-change: transform;
}

.map-viewer-surface img {
  width: 100%;
  height: 100%;
  display: block;
}

.map-viewer .map-pin {
  transform: scale(calc(1 / var(--map-scale, 1)));
}

.map-viewer .map-pin:hover {
  transform: scale(calc(1.4 / var(--map-scale, 1)));
}

.map-viewer .map-pin:hover .map-pin-label {
  display: block;
}

.map-viewer-controls {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
}

.map-viewer-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-stat-bg);
  color: var(--color-heading);
  font-family: 'ScalySans', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.map-viewer-controls button:hover {
  background: var(--color-accent);
}

.map-viewer-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  z-index: 100;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-viewer-fullscreen .map-viewer-surface {
  width: 100%;
  height: 100%;
  max-width: calc(100vh * var(--map-aspect, 4 / 3));
  max-height: calc(100vw / var(--map-aspect, 4 / 3));
}
