:root {
    --bg-color: #000000;
    --text-color: #fdfdfd;
    --accent-color: #f5b400;
    --link-color: #e04b6a;
    --card-bg: #111111;
    --border-color: #f5b400;
}

.light-theme {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #d48806;
    --link-color: #c92a51;
    --card-bg: #f2f2f2;
    --border-color: #d48806;
}

body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
}

.main_header {
    font-family: "Playwrite HU", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
}

.socials-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    background-color: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
    z-index: 10;
    padding: 5px 10px;
}

.socials-list a, a:visited, a:hover {
    color: var(--link-color);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.social svg {
    fill: var(--accent-color);
    transition: transform 0.2s ease-in-out;
}

.social:hover svg {
    transform: scale(1.1);
}

.socials-list > .social.end-aligned {
    margin-left: auto;
}

.carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
    gap: 20px;
}

.iframe-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 620 / 378;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#theme-toggle {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.peek-container {
    position: fixed;
    bottom: 0;
    left: -250px; /* Start hidden */
    width: 250px;
    height: auto;
    z-index: 999;
    pointer-events: none;
    transition: left 0.5s ease-in-out;
}

.peek-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
}

/* When active, slide it into view */
.peek-container.active {
    left: 0;
}

.peek-container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 5px;
    height: 40px;
    background-color: var(--accent-color);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.campaign {
    font-size: 2.5em;
    padding-top: 3em;
}

#info {
  background: none;
  border: none;
  font-size: 24px;
  margin-right: 24px;
  cursor: pointer;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#dvd {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: auto;
    z-index: 1000;
    pointer-events: none;
    display: none;
}