@import './fonts.css?v=20260826-003054';

:root {
  --page-shell-bg:#08080b;
  --page-shell-panel:#101014;
  --page-shell-text:#f5f5f7;
  --page-shell-accent:#ff2e88;
  --page-shell-highlight:#ff8fc0;
  --page-shell-muted:#9a9a9a;
  --page-shell-content-width:60%;
}

/* Shared site shell for future pages. */
.PageShell {
  min-height:100vh;
  margin:0;
  display:flex;
  flex-direction:column;
  background:var(--page-shell-bg);
  color:var(--page-shell-text);
}

.PageShellMain {
  flex:1;
}

.PageShellSkipLink {
  position:fixed;
  z-index:1000;
  top:0.75rem;
  left:0.75rem;
  padding:0.7rem 1rem;
  border:2px solid var(--page-shell-accent);
  border-radius:5px;
  background:var(--page-shell-panel);
  color:var(--page-shell-text);
  font-family:'Exo', sans-serif;
  font-weight:700;
  text-decoration:none;
  transform:translateY(calc(-100% - 1rem));
  transition:transform 0.15s ease;
}

.PageShellSkipLink:focus {
  transform:translateY(0);
  outline:2px solid var(--page-shell-text);
  outline-offset:3px;
}

.PageShellHeader {
  position:relative;
  width:100%;
  margin:8px auto 0;
  padding:0;
  color:var(--page-shell-highlight);
}

.PageShellBrand {
  width:50%;
  margin:0 auto;
}

.PageShellBrandName {
  margin:0;
  font-family:'Orbitron', sans-serif;
  font-size:24px;
  letter-spacing:0.04em;
  font-style:normal;
}

.PageShellBrandName a {
  color:var(--page-shell-text);
  text-decoration:none;
}

.PageShellBrand p:not(.PageShellBrandName) {
  margin:0.2em 0 0;
  font-family:'Exo', sans-serif;
  font-style:italic;
}

.PageLanguageSelector {
  position:absolute;
  top:10px;
  right:5%;
  display:flex;
  align-items:center;
  gap:4px;
  color:var(--page-shell-text);
  font-family:'Exo', sans-serif;
  font-size:small;
}

.PageLanguageSelector select {
  padding:3px;
  border:1px solid var(--page-shell-accent);
  border-radius:5px;
  background:rgba(0, 0, 0, 0.35);
  color:inherit;
  font-family:'Exo', sans-serif;
}

.PageLanguageSelector select:focus-visible {
  outline:2px solid currentColor;
  outline-offset:3px;
}

.PageShellDivider {
  width:var(--page-shell-content-width);
  margin:0.5em auto;
  border:0;
  border-top:1px solid var(--page-shell-accent);
  opacity:0.55;
}

.PageShellFooter {
  position:relative;
  width:100%;
  overflow:hidden;
  padding:1em 0 1.5em;
  color:var(--page-shell-highlight);
  text-align:center;
  font-family:'Exo', sans-serif;
}

.PageShellFooterActions {
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  gap:2.5em;
  width:min(480px, calc(100% - 2em));
  margin:0 auto 0.75em;
  padding:1.5em 1em;
  background:var(--page-shell-panel);
  border:2px solid var(--page-shell-accent);
  border-radius:14px;
}

.PageShellFooterActions::before {
  content:'';
  position:absolute;
  top:50%;
  left:calc(-50vw + 50%);
  width:calc(50vw - 50%);
  border-top:1px solid var(--page-shell-accent);
  opacity:0.75;
  z-index:0;
}

.PageShellFooterActions::after {
  content:'';
  position:absolute;
  top:50%;
  left:100%;
  width:calc(50vw - 50%);
  border-top:1px solid var(--page-shell-accent);
  opacity:0.75;
  z-index:0;
}

.PageShellFooterActions > * {
  position:relative;
  z-index:1;
}

.PageShellFooterActions a,
.PageShellFooterActions a:visited,
.PageShellFooterActions a:hover,
.PageShellFooterActions a:focus,
.PageShellFooterActions a:active {
  display:inline-flex;
  align-items:center;
  flex-direction:column;
  gap:0.4em;
  color:var(--page-shell-text);
  text-decoration:none;
}

.PageShellActionIcon {
  width:1.25rem;
  height:1.25rem;
  flex:0 0 auto;
  transition:filter .2s, transform .2s;
}

.PageShellHomeLink .PageShellActionIcon,
.PageShellContactLink .PageShellActionIcon { color:var(--page-shell-text); }

.PageShellHomeLink:hover .PageShellActionIcon,
.PageShellHomeLink:focus-visible .PageShellActionIcon,
.PageShellContactLink:hover .PageShellActionIcon,
.PageShellContactLink:focus-visible .PageShellActionIcon {
  filter:brightness(1.15);
  transform:translateY(-1px);
}

.PageShellFooter .PageShellPrivacyLink {
  display:inline-flex;
  align-items:center;
  gap:0.75em;
  margin-top:0.2em;
  color:var(--page-shell-text);
}

.PageShellPrivacyLink::before,
.PageShellPrivacyLink::after {
  content:'';
  width:28px;
  border-top:1px solid var(--page-shell-accent);
}

#PageShellCopyright {
  margin-top:0.75em;
  color:var(--page-shell-muted);
  font-size:0.75rem;
}

.PageShellFooter a {
  color:inherit;
  text-decoration:none;
}

.PageShellFooter .PageShellHomeLink,
.PageShellFooter .PageShellContactLink {
  color:var(--page-shell-text);
}

.PageShellFooter a:hover,
.PageShellFooter a:focus-visible {
  text-decoration:underline;
}

@media (max-width:600px) {
  .PageShellBrand { width:90%; }
  .PageShellDivider { width:90%; }
  .PageLanguageSelector span { display:none; }
  .PageLanguageSelector { right:1em; }
  .PageShellFooterActions { gap:1.5em; }
}
