body {
    background-color: #131313;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

main {
    margin-top: 94px; /* Avoid overlapping with the fixed navbar */
}

main.inner {
    margin-top: 0px;
}

section {
    padding: 6px 20px;
    margin: 0;
}

div.content {
    margin: auto;
    max-width: 800px;
}
div.content-wide {
    margin: auto;
    max-width: 1200px;
}

header, nav, footer {
    padding: 4px 20px;
    box-sizing: border-box;
}

header {
    background-color: #fff;
    color: #000;
    display: flex; /* ← correct */
    justify-content: center; /* center the inner container */
    align-items: center;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.header-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.header-solarwind {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.header-product {
    background-color: #012437;
    width: 100%;
    padding: 0;
    margin-top: 94px;
}


.header-product-inner {
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.solarwind-logo {
    padding: 8px 0 2px;
    display: block;
}  



/* Main navigation */
nav.main {
    max-width: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Navigation list */
nav.main ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Individual nav items */
nav.main li {
    margin-right: 30px;
}

/* Selected item styling */
nav.main li.selected {
    font-weight: 800;
}

/* Nav links */
nav.main a {
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 17px;
}

nav.main a:hover {
    color: #e5683a;
}

/* Hamburger menu checkbox */
#menu-toggle {
    display: none;
}

/* Hamburger icon container */
.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hamburger icon lines */
.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    height: 4px;
    width: 26px;
    background-color: #000;
    transition: transform 400ms cubic-bezier(0.01, 1, 0.01, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

/* Animation when menu is toggled */
#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: transparent;
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

/* Responsive navigation styles */
@media (max-width: 700px) {
    /* Show hamburger icon */
    .menu-button-container {
        display: flex;
    }

    /* Hide the menu by default */
    nav.main ul.menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding: 0;
        margin: 0;
        z-index: 999;
    }

    /* Show menu when toggled */
    #menu-toggle:checked ~ ul.menu {
        display: flex;
    }

    /* Stack menu items */
    nav.main ul.menu > li {
        width: 100%;
        padding: 12px 0;
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
        background-color: #fff;
    }

    nav.main ul.menu > li:first-child {
        border-top: 1px solid #ddd;
    }

    nav.main ul.menu a {
        font-size: 22px;
        padding: 10px;
        width: 100%;
        display: inline-block;
        color: #000;
    }

    nav.main ul.menu a:hover {
        color: #e5683a;
    }
}


/* Secondary navigation */
nav.secondary {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 0;
}

nav.secondary ul {
    list-style: none;
    padding: 0;
    margin: 12px 0px;
}

nav.secondary li {
    display: inline;
    margin-right: 30px;
}

nav.secondary li.selected {
    border-bottom: 2px solid rgb(176, 93, 93);
}

nav.secondary li.product {
    font-size: 19px;
    font-weight: 600;
}

nav.secondary a {
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    padding: 14px 10px;
}

nav.secondary a.buy {
    background-color: #c95328;
    color: #fff;
    font-weight: bold;
    padding: 16px 30px;
}

nav.secondary a:hover {
    color: #e5683a;
}

nav.secondary a.buy:hover {
    color: #fff;
    background-color: #e5683a;
}

@media (max-width: 900px) {
    nav.secondary {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    nav.secondary ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    nav.secondary li {
        display: block;
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    nav.secondary li.product {
        font-size: 22px;
        padding: 14px 0;
        font-weight: bold;
    }

    nav.secondary a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        color: #fff;
    }

    nav.secondary a.buy {
        background-color: #c95328;
        margin: 10px auto;
        display: inline-block;
        width: auto;
        padding: 16px 30px;
        font-size: 20px;
    }

    nav.secondary a.buy:hover {
        background-color: #e5683a;
    }
}

@media (max-width: 900px) {
    main,
    main.inner {
        margin-top: 0;
    }
}



.menu {
    display: flex;
    align-items: center;
    flex-direction: row;
    list-style-type: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    margin: 0 1rem;
    /* overflow: hidden; */
    height: 100%;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    height: 4px;
    width: 26px;
    background-color: #000;
    position: absolute;
    transition: transform 400ms cubic-bezier(0.01, 1, 0.01, 1);
    border-radius: 2px;
}

.menu-button::before {
    margin-top: -8px;
    content: '';
}

.menu-button::after {
    margin-top: 8px;
    content: '';
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (max-width: 700px) {
    .menu-button-container {
        display: flex;
    }
    .menu a {
        font-size: 22px;
    }
    .menu {
        position: absolute;
        top: 0;
        margin-top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.01, 1, 0.01, 1);
    }
    #menu-toggle:checked ~ .menu li {
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        height: 40px;
        transition: height 400ms cubic-bezier(0.01, 1, 0.01, 1);
    }
    .menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        width: 100%;
        color: white;
        background-color: #ccc;
    }
    .menu > li:first-child {
        border-top: 1px solid #444;
    }
    #menu-toggle:checked ~ .menu a {
        padding: 10px;
        font-size: 22px;
    }
}

h1 {
    font-size: 36px;
    margin: 30px 0 10px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 24px;
}

ul {
    font-size: 20px;
}

p {
    font-size: 22px;
    padding: 0;
}

p.large {
    font-size: 26px;
    padding: 10px 0px;
}


.center {
    margin: 20px auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.wide-image img {
    width: 100%;
    height: auto;
    margin: 20px auto;
}

section.hero {
    background: linear-gradient(to bottom, #fff 35%, #474c50 35%, #c6d0d1);
    color: #fff;
    overflow: visible;
    text-align: center;
}

img.hero {
    margin-top: 10px;
    height: auto;
    max-width: 46em;
}

section.dark {
    background-color: #0b1216;
    color: #fff;
    padding-bottom: 30px;
}

section.light {
    background-color: #fff;
    color: #000;
    padding-bottom: 40px;
}

section.newsletter {
    background-color: #eee;
    color: #000;
    padding: 40px 0;
}

section.forsaken-souls-dark {
    background-color: #223f50;
    color: #fff;
    padding-bottom: 40px;
}

section.hidden-ward-dark {
    background-color: #743530;
    color: #fff;
    padding-bottom: 40px;
}

section.cursed-artifact-dark {
    background-color: #857254;
    color: #fff;
    padding-bottom: 40px;
}

section.cursed-artifact-dark a {
    color: #012437;
}

.video-container iframe {
    width: 100%;
}

.book-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    align-items: center;
    text-align: center;
}
  
.book-container img {
    position: absolute;
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    margin: 20px auto;
}
  
.book-container img.active {
    opacity: 1;
}

@media only screen and (max-width: 700px) {
    .book-container {
        width: 100%;
    }
    
    .book-container img {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        width: 100%;
        height: auto;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
    gap: 30px; /* or whatever gap you want */
    padding: 10px 20px 10px;
    max-width: 1200px; /* or 100% if you want full screen */
    margin: 0 auto;
}
@media (max-width: 900px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
  }
  
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: 1fr; /* 1 column on small screens */
    }
  }
  
.product-card {
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.03); /* Slight zoom on hover */
    transition: transform 0.3s ease; /* Smooth animation */
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card h3 {
    margin: 16px 0 0;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
}

.product-card p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
}



/* Icon grid layout */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-cards i {
    font-size: 2rem;
    color: #000;
    margin-bottom: 12px;
}

.info-cards.hidden-ward i {
    color: #bf534b;
}

.info-cards.cursed-artifact i {
    color: #ac956e;
}

.info-cards.forsaken-souls i {
    color: #26b4b4;
}

.info-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px 16px;
    text-align: center;
    background-color: #fff;
    transition: background-color 0.3s ease;
}
.info-card:hover {
    background-color: #f9f9f9;
}
.info-card h3 {
    font-size: 1.4rem;
    color: #000;
    margin: 0;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
}
.info-card p {
    font-size: 1rem;
    color: #000;
    margin: 0;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

div.content img {
    max-width: 100%;
    height: auto;
}


div.content figure {
    text-align: center;
    margin: 0 0 30px;
}

div.content figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
}

div.content figcaption {
    text-align: center;
    margin-top: 2px;
    color: #444;
}


.buy-now {
    text-align: center;
}
.buy-now a.buy {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #c95328;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.buy-now a.buy:hover {
    background-color: #e5683a;
    color: #fff;
}

.badge-row {
  display: flex;
  align-items: center;        /* ⬅ vertical center */
  gap: 40px;
  flex-wrap: wrap;            /* allows wrapping on small screens */
  justify-content: flex-start;
}

/* Ensure images align nicely */
.badge-row a img {
  display: block;             /* removes inline-space gaps */
  max-width: 100%;
  height: auto;
}

/* Optional fixed heights if needed */
a.etsy-badge img {
  height: 100px;
}
a.itchio-badge img {
  height: 70px;
}

/* Responsive: stack badges vertically on narrow screens */
@media (max-width: 600px) {
  .badge-row {
    flex-direction: column;
    align-items: flex-start; /* or center, if you prefer */
  }
}


a.amazon-badge {
    margin: 40px 0;
    transition: all 0.2s ease;
}
a.amazon-badge img {
    height: 70px;
}

a.amazon-badge:hover img, a.etsy-badge:hover img, a.itchio-badge:hover img {
  transform: translateY(-2px);
  filter: brightness(1.05);
  cursor: pointer;
}

a.etsy-badge img {
    height: 100px;
    transition: all 0.2s ease;
}

a.itchio-badge {
    vertical-align: top;
}

a.itchio-badge img {
    height: 70px;
    transition: all 0.2s ease;
}

a.kickstarter, a.backerkit {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #05ce78;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
a.kickstarter:hover {
    background-color: #10a966;
    color: #fff;
}

a.backerkit {
    background-color: #ffcd55;
    color: #322908;
}

a.backerkit:hover {
    background-color: #fcd77f;
    color: #322908;
}


.puzzle-download {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  max-width: 650px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
}

.download-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.puzzle-thumbnail {
  width: 120px;
  height: auto;
  border-radius: 6px;
  margin-right: 1rem;
  border: 1px solid #cecece;
}

.download-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.4;
}

.download-icon {
  font-size: 2rem;
  color: #743530;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.download-link:hover .download-icon {
  color: #000;
}



/* KEY VALIDATION */
#puzzle-container {
    text-align: center;
    max-width: 480px;
    width: 100%;
    padding: 20px;
    margin: 100px 0;
    box-sizing: border-box;
    border: 2px solid #333;
    border-radius: 10px;
    background-color: #000;
}

#input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

#user-input {
    flex-grow: 1;
    padding: 7px;
    font-size: 16px;
    font-family: 'Cinzel', serif;
    box-sizing: border-box;
    border-radius: 5px;
    border-style: hidden;
}
@media (max-width: 700px) {
    #user-input {
        font-size: 14px;
    }
}



#teaser-user-input {
    flex-grow: 1;
    padding: 7px;
    font-size: 16px;
    font-family: 'Cinzel', serif;
    box-sizing: border-box;
    border-radius: 5px;
    border-style: hidden;
}
@media (max-width: 700px) {
    #teaser-user-input {
        font-size: 14px;
    }
}

.teaser-result {
  display: flex;
  align-items: center; /* This vertically aligns items */
  font-weight: bold;
  font-size: 24px;
}

.teaser-result i {
  margin-right: 0.2rem;
}

#teaser-result-correct {
    color: #20c997;
}

#teaser-result-wrong {
    color:#eeb654;
}

#key-title {
    margin-top: 20px;
    font-size: 20px;
}
#validation-key-container {
    display: flex;
    flex-wrap: wrap; /* Optional, if you want the keys to wrap to the next line */
    justify-content: center; /* Optional, centers the keys horizontally */
}
div.validation-key {
    background-color: #12536f;
    color: #fff;
    width: 100px;
    height: 46px;
    font-size: 32px;
    font-weight: bolder;
    margin: 10px;
    padding-top: 4px;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
}

#error {
    margin-bottom: 8px;
    font-size: 20px;
    color: rgb(176, 93, 93);
}

#instructions-container {
    text-align: left;
    max-width: 640px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #505050;
    border-radius: 10px;
    background-color: #000;
}

p.instructions {
    font-size: 20px;
    text-align: left;
    color: #f5f5f5;
}


/* MANUAL VALIDATION */
.formula span.key {
    color: #cd3d52;
}

.formula span.number {
    color: #3dcdc3;
}

table.index-table {
    border-collapse: collapse;
    width: 50%;
}

table.index-table.th, table.index-table.td {
    border: 1px dotted #696969;
    text-align: center;
    padding: 8px;
}

#main-container {
    text-align: left;
    max-width: 720px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #505050;
    border-radius: 10px;
    background-color: #000;
}

footer {
    margin: 0;
    padding: 10px 0 40px;
    background-color: #012437;
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 16px;
}

footer p.copyright {
    font-size: 18px;
}

footer img.publisher-logo {
    height: 120px;
    width: auto;
}

a {
    color: #04b1c5;
}

a:hover {
    color: #058d9c;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    grid-auto-rows: 250px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    /* Avoid layout shifts */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* -- */
}

.gallery-item:hover::before {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.thumbnail-container {
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.thumbnail-container:hover {
    transform: scale(1.1); /* Scale factor on hover */
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures that the image covers the entire container without distortion */
}

/* TESTIMONIALS */
.testimonials-section {
    padding-bottom: 30px;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    margin: 0 4px;
    padding: 0;
    box-sizing: border-box;
}

.testimonial p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 2px;
    margin-top: 0;
}

.testimonial strong {
    display: block;
    margin: 4px 0px 0px;
    color: #fff;
    text-transform: uppercase;
}

/* STATS */
.stats-section {
    padding: 36px 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.statistic {
    flex: 1;
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    text-align: center;
}

.statistic p {
    font-size: 72px;
    color: #fff;
    margin: 0;
    padding: 0;
}

.statistic strong {
    display: block;
    margin: 4px 0px 18px;
    text-transform: uppercase;
    color: #ddd;
    font-size: 16px;
}

@media (max-width: 700px) {
    .statistic p {
        font-size: 44px;
    }
    .statistic strong {
        font-size: 13px;
    }
}

/* FAQ */
.faq-item h3 {
    font-size: 24px;
    margin: 20px 0 0;
}
.faq-item p {
    padding-top: 4px;
    font-size: 20px;
    margin: 0;
}


/* Cookies */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
    display: none;
}

.cookie-notice p {
    margin: 4px 0 12px 0;
    font-size: 16px;
}

#accept-cookies {
    background-color: #174953;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

#accept-cookies:hover {
    background-color: #256775;
}

.social-icons {
    list-style: none;
    padding: 0;
}
.social-icons li {
    display: inline-block;
    margin-right: 10px;
}
.social-icons li:last-child {
    margin-right: 0;
}
.social-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}
.social-icons a:hover {
    color: #ccc;
}


/* VALIDATION KEYS */
table.validation-keys {
    width: 100%;
    background: #fff;
    margin: 1em 0;
    border: 1px solid #eee;
    box-shadow: none;
    border-radius: .28571429rem;
    text-align: left;
    color: #000;
    border-collapse: separate;
    border-spacing: 0;
}

table.validation-keys th, table.validation-keys td {
    border: 1px solid #ddd;
    padding: 8px;
    margin: 0;
    font-size: 24px;
}

table.validation-keys th {
    background-color: #d5d5d5;
    color: #194351;
}

table.validation-keys tr:nth-child(even) {
    background-color: #f6fbfd;
}

table.validation-keys tr:hover {
    background-color: #dfeaf0;
}

table.validation-keys span.correction {
    background-color: #85cb6471;
    font-weight: bold;
    padding: 0 4px 4px;
}
span.validation-keys-correction {
    background-color: #85cb6471;
    font-weight: bold;
}

button {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #05ce78;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:disabled {
    background-color: #31443c;
    transition: background-color 0.2s ease;
}


/* FINALE */
.letter, .letter-typewriter {
    margin: 20px auto;
    padding: 4px 20px;
    border: 2px solid #d7d5cc;
    background-color: #dbd6cd;
    color: #543420;
    font-family: "Love Light", serif;
    font-weight: 400;
    font-style: normal;
}

.letter p {
    font-size: 36px;
    margin: 24px 0px;
    line-height: 100%;
}

.signature {
    margin-top: 20px;
    font-style: italic;
}

.letter-typewriter {
    font-family: "Special Elite", serif;
}

.letter-typewriter p {
    font-size: 16px;
    margin: 24px 0px;
    line-height: 140%;
}

div.character {
    display: flex;
}

div.character img {
    max-width: 100%;
    display: block;
}


/* HINTS */
#hints-container {
    text-align: center;
    max-width: 720px;
    width: 100%;
    padding: 20px;
    margin: 100px 0;
    box-sizing: border-box;
    border: 2px solid #333;
    border-radius: 10px;
    background-color: #000;
}

table.hints {
    width: 100%;
    background: #ffffff;
    margin: 1em 0;
    border: 1px solid #eee;
    box-shadow: none;
    border-radius: .28571429rem;
    text-align: left;
    color: #000;
    border-collapse: separate;
    border-spacing: 0;
}

table.hints th, table.hints td {
    border: 1px solid #ddd;
    padding: 8px;
    margin: 0;
    font-size: 20px;
}

table.hints th {
    background-color: #d5d5d5;
    color: #194351;
}

table.hints tr:nth-child(even) {
    background-color: #dde7eb;
}


/* AUDIO */
#audio-container {
    text-align: center;
    max-width: 720px;
    width: 100%;
    padding: 20px;
    margin: 20px 0 0 0;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #000;
    display: block;
    clear: both;
}

#transcript-container {
    text-align: left;
    max-width: 720px;
    width: 100%;
    padding: 0px 20px;
    margin: 20px 0 0 0;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #fff;
    color: #000;
    display: block;
    clear: both;
}