@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    margin: 60px 0 0 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    display: grid;
    place-items: center;
    z-index: 1000;
}

.logo-wrap {
    height: 100%;
    display: grid;
    place-items: center;
    background-color: white;
    width: 100%;
}
.blur-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 8px 14px;
    border-radius: 16px;
    text-decoration: none;
}

.logo-link .logo {
    height: 50px;
    width: auto;
    display: block;
}

.split-block {
    padding: 40px 20px;
}

.split-block .split-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
  
.split-block .split-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.split-block p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

.split-block .cta {
    margin-top: auto;
    padding-top: 24px;
}
.split-block .cta a {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 26px;
    border-radius: 999px;
    background-color: black;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.split-block .cta a:hover {
    background-color: #b00000;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(204, 0, 0, 0.35);
}
  
.split-block .image-link {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}
  
.split-block .image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
  
.split-block .image-link:hover img {
    transform: scale(1.05);
}
  
@media (max-width: 800px) {
    .split-block .split-inner {
      grid-template-columns: 1fr;
    }
}

.content-block {
    width: 100%;
    padding: 0 0 2em 0;
    display: flex;
    justify-content: center;
}

.content-block .content-inner {
    max-width: 950px;
    width: 100%;
}

.content-block .content-inner h1,
.content-block .content-inner h2,
.content-block .content-inner h3 {
    text-align: center;
}

.content-block .content-inner p {
    max-width: 650px;
    margin: 3em auto 0 auto;
    padding: 0 5px;
    text-align: left;
}

.content-block .content-disclamer p {
    text-align: center;
    font-size: 0.7rem;
    color: #555;
}

@media (max-width: 610px) {
    .content-block .content-inner p {
        padding: 0 20px;
        box-sizing: border-box;
    }
}

.content-block .content-inner img {
    width: 100%;
    max-width: 950px;
    height: auto;
    display: block;
    margin: 1em auto;
}

.promo-block {
    width: 100%;
    padding: 3em 0;
    display: flex;
    justify-content: center;
    background-color: #333;
}
.promo-block .content-inner {
    max-width: 950px;
    width: 100%;
}
.promo-block .content-inner iframe {
    width: 100%;
    max-width: 950px;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 0;
}

.center-block {
    width: 100%;
    margin: 0;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background-color: #eee;
}

@media (max-width: 600px) {
    .center-block {
        flex-direction: column;
        gap: 24px;
        padding: 32px 0;
    }
    .yt-logo,
    .patreon-logo,
    .x-logo,
    .imdb-logo {
        height: 34px;
        padding: 10px 0;
    }
}

.center-block .center-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.center-block .center-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.yt-logo {
    height: 30px;
    width: auto;
}

.patreon-logo {
    height: 30px;
    width: auto;
}

.x-logo {
    height: 30px;
    width: auto;
}

.imdb-logo {
    height: 30px;
    width: auto;
}

.card-grid {
    max-width: 950px;
    margin: 1em auto 3em auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
  
.card-grid .card {
    text-decoration: none;
    color: inherit;
    display: block;
}
  
.card-grid .card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
  
.card-grid .card h3 {
    margin: 12px 0 0 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}
  
@media (max-width: 950px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        box-sizing: border-box;
    }
}
  
@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.card-grid .card img {
    transition: transform 0.25s ease;
}

.card-grid .card:hover img {
    transform: scale(1.03);
}

footer {
    margin: 0;
    padding: 2em 0 4em 0;
    font-size: 0.5rem;
    color: #555;
}
footer .logo {
    height: 20px;
    opacity: 0.5;
}
