@font-face {
  font-family: "BNKinx";
  src: url("http://videopainter.ca/fonts/BNKinx.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BNAxelGrotesk";
  src: url("http://videopainter.ca/fonts/BNAxelGrotesk-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #11181e;
  --accent-color: #3fe2a1;
  --accent-color-2: #e54285;
  --accent-color-3: #c6d96e;
  --text-color: #ede6da;
  --text-light: #b8b0a0;
  --bg-color: #11181e;
  --bg-light: #1a2229;
  --border-color: #2a3440;
}

body {
  font-family: "BNAxelGrotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: radial-gradient(
      at 0% 0%,
      rgba(26, 18, 45, 0.8) 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 0%, rgba(18, 32, 58, 0.8) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(32, 18, 50, 0.8) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(18, 38, 52, 0.8) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(22, 28, 48, 0.6) 0px, transparent 50%),
    var(--bg-color);
  position: relative;
  min-height: 100vh;
}

.credits {
  font-size: 0.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "BNKinx", sans-serif;
}

h2 {
  font-size: 1.5em;
  color: #d720a6;
  text-transform: uppercase;
}

.section-title {
  font-family: "BNKinx", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}

main {
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.price-tables {
  padding-top: 1rem;
  background-image: url("/images/tables_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-color: #081d5d;
}

header {
  background-image: url("/images/riso-bg.jpg");
  border-bottom: 1px solid var(--border-color);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: color;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.16;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}

a.cta-button {
  border-radius: 99px;
  color: #e54285 !important;
  background-color: #c6d96e !important;
  padding: 15px;
  border-bottom: 5px solid #e54285;
}
a.cta-button:hover {
  transition: 0.3s;
  margin-top: 5px;
  color: #e54285 !important;
  border-bottom: 0px solid #e54285;
}

.product-box a.cta-button {
  font-size: 1.8rem;
}

.scrolling-banner {
  background: #c6d96e;
  overflow: hidden;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.75rem 0;
}
.scrolling-banner .alt {
  color: #360e90;
}
.product-box .blink {
  font-size: 1.2em;
  color: #c6d96e;
  margin-bottom: 20px;
}

.product-box li {
  color: #ffffff;
}

p.shoutout {
  font-size: 1.2rem !important;
  text-transform: uppercase;
  border: 2px solid white;
  border-radius: 99px;
  text-align: center;
  margin-bottom: 12px;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.countdown {
  color: #f4d03f;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1rem 0;
  margin-top: -10px;
  text-align: center;
}

.scrolling-text {
  display: inline-block;
  animation: scroll 10s linear infinite;
  font-family: "BNAxelGrotesk", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #e54285;
}

.scrolling-text span {
  padding-right: 3rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 2.5rem;
  font-weight: 300;
  color: #d720a6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "BNKinx", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "BNAxelGrotesk", sans-serif;
  font-weight: bold;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--accent-color);
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("../images/Video_Painter_Poster.jpg") no-repeat center center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
  pointer-events: none;
  z-index: 5;
}

.hero .hero-logo {
  max-width: 200px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--bg-color);
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  font-family: "BNKinx", sans-serif;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  font-family: "BNKinx", sans-serif;
}

p.coupon {
    font-size: 0.9rem !important;
    padding: 5px;
    color: #0000aa !important;
    background-color: #ffffff !important;
}


.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.cta-button:hover {
  background: var(--accent-color-2);
  transform: translateY(-2px);
}

section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.email-desc {
  text-align: center;
  font-size: 1.2em;
}

.email-signup {
  background: var(--bg-light);
  background-image: url(/images/riso-bg.jpg);
  background-size: cover;
}

.email-form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

.email-form input {
  /* flex: 1; */
  padding: 0.5rem;
  background-color: #ede6da;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.button-block {
  display: block;
  width: 100%;
}

.email-form button {
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  width: 100% !important;
  flex: 1;
  flex: 0 0 100%; /* flex-grow, flex-shrink, flex-basis */
  transition: background 0.2s;
}

.email-form button:hover {
  background: var(--accent-color-3);
}

.description-box {
  width: 62%;
  background-color: #1a2229;
  float: right;
  padding: 50px;
  margin-top: -65px;
  padding-right: 150px;
}
.description-box p {
  font-size: 21px;
  margin-bottom: 14px;
  position: relative;
  z-index: 99;
}

.youtube-short {
  /* background-image: url("/images/riso-landscape.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left; */
  background-color: #1a2229;
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

.youtube-short::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 210px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,80 350,20 600,60 C850,100 1050,40 1200,80 L1200,120 L0,120 Z' fill='%23001e61'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 15;
}

.short-container {
  display: flex;
  justify-content: left;
  align-items: left;
  position: relative;
  z-index: 99;
  padding-left: 9%;
}

.short-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: block;
  position: relative;
  z-index: 10;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
}

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

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.creator-story {
  background: var(--bg-light);
}

.creator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.creator-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.creator-text p {
  margin-bottom: 1.5rem;
}

.creator-video {
  width: 100%;
}

@media (max-width: 968px) {
  .creator-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

p.top-credits {
  font-size: 0.8em;
  color: #444e59;
  font-style: italic;
  text-align: right;
  margin-top: -50px;
}
.testimonials {
  background-image: url(/images/BRAIN.png);
  background-size: cover;
}
.description-box h2 {
  color: #c6d96e;
}

.price-tables .section-title {
  color: #c6d96e;
  font-size: 4.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  letter-spacing: -1px;
}

.youtube-short a,
footer a,
.email-signup h2 {
  color: #c6d96e;
  text-decoration: none;
}

.youtube-short a {
  position: relative;
  z-index: 99;
}

.youtube-short a:hover,
footer a {
  text-decoration: underline;
}

.email-signup h2 {
  margin-bottom: 0;
}

section.about {
  background-image: url(/images/riso-landscape.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}

.about .container {
  background-color: #1a2229;
  padding: 5rem;
  background: var(--bg-light);
  background-image: url(/images/riso-bg.jpg);
}

section.about p {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

p.signoff {
  padding-top: 20px;
}

.testimonials h2 {
  color: #623975;
  text-shadow: 1px 1px 5px #f27070;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  /* background: var(--bg-light); */
  background: #623975;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 500;
  color: var(--text-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

strike {
  opacity: 0.8;
}

.price-tables p.tag {
  font-size: 0.9em;
  color: #9fb3c9;
  font-style: italic;
  text-align: center;
}

.pruchase-terms {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 4px;
}

.buy-container section.columns {
  padding-top: 0;
  padding-bottom: 0;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(63, 226, 161, 0.2);
}

img.mockup-image {
  width: 100%;
  max-width: 350px;
}

.product-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-light);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.download-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-color-2);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.download-button:hover {
  background: var(--accent-color);
}

.tutorials-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

.tutorials-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.tutorials-sidebar ul {
  list-style: none;
}

.tutorials-sidebar li {
  margin-bottom: 0.5rem;
}

.tutorials-sidebar a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: 4px;
  transition: background 0.2s;
}

.tutorials-sidebar a:hover,
.tutorials-sidebar a.active {
  background: var(--bg-light);
  color: var(--accent-color);
}

.tutorial-content {
  max-width: 800px;
}

.tutorial-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.tutorial-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
}

.tutorial-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.faq-question {
  font-size: 2rem;
  line-height: 2.1rem;
  font-weight: 500;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 1.5rem;
  line-height: 1.7rem;
  color: var(--text-light);

  padding-left: 1rem;
  font-family: "BNAxelGrotesk";
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
}

.faq-answer a {
  color: #3fe2a1;
}

.faq-item.active .faq-answer {
  padding-bottom: 1rem;
}

.support-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.support-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.support-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.support-item p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.support-item li {
  line-height: 1.6;
}

.support-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.support-item a:hover {
  text-decoration: underline;
}

.support-item .cta-button {
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 12px 8px 12px !important;
}

.support-item .cta-button:hover {
  background: var(--accent-color-2);
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.social-icon span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.social-icon:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  text-decoration: none;
}

.support-screenshot {
  max-width: 100%;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.buy-container {
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
}

.product-box.lite,
.product-box.pro {
  background: #0000aa !important;
  border: 2px solid white;
  border-radius: 0 !important;
}

.product-box.pro {
  box-shadow: 0 10px 40px rgba(0, 255, 0, 0.4) !important;
}


.product-box sup {
  font-size: 0.8rem;
  margin-left: -6px;
  vertical-align: 120%;
}

sup.supone {
    margin-left: 7px;
}


.upgrade-box {
  background: #1a2229;
  border: 2px solid white;
  border-radius: 0 !important;
  margin-top: 20px;
  padding: 1em;
  background-image: url(/images/riso-bg.jpg);
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: color;
}

.upgrade-box p {
  font-size: 1.2rem !important;
}

.upgrade-box h2 {
  font-size: 2rem;
  color: #d720a6;
  margin-bottom: 8px;
}

.upgrade-box a {
  text-decoration: none;
  color: #d720a6;
}

.gallery {
  padding-top: 0;
  padding-bottom: 0;
}
.image-row {
  margin-top: -10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.image-row img {
  flex: 1; /* each image takes equal width */
  object-fit: cover;
}
.gallery img {
  width: 100%;
}

a#buy {
  display: block;
  position: relative;
  top: -260px;
  visibility: hidden;
}

.buy-container p {
  font-size: 1.5rem;
  color: #ede6da;
}

p.user-suggestions {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #ede6da;
  opacity: 0.7;
  margin-bottom: 12px;
}

.embed-container {
  min-height: 500px;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
}

footer {
  padding-top: 6rem !important;
  padding-bottom: 3rem !important;
  background: var(--bg-light);
  color: var(--text-color);
  margin-top: 0;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 10;

  background-image: url("/images/riso-bg.jpg");
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: color;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.8;
  font-family: "BNAxelGrotesk", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  transition: 0.3s;
  color: var(--accent-color);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 3rem 0 1rem;
  color: var(--text-color);
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  color: var(--text-color);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-light);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.first-video {
  margin-top: -146px !important;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .tutorials-layout {
    grid-template-columns: 1fr;
  }

  .tutorials-sidebar {
    position: static;
  }

  .email-form {
    flex-direction: column;
  }

  section {
    padding: 4rem 0;
  }

  .short-container {
    padding-left: 0;
  }
  .short-container iframe {
    width: 100%;
    max-width: 315px;
    height: auto;
    aspect-ratio: 9/16;
  }
}

.wrapper {
  padding: 5px;
  max-width: 960px;
  width: 95%;
  margin: 20px auto;
}
header {
  padding: 0 15px;
}

.columns {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 5px 0;
}

.column {
  flex: 1;
  margin: 2px;
  padding: 10px;
  &:first-child {
    margin-left: 0;
  }
  &:last-child {
    margin-right: 0;
  }
}

footer {
  padding: 0 15px;
}

@media screen and (max-width: 980px) {
  .columns .column {
    margin-bottom: 5px;
    flex-basis: 40%;
    &:nth-last-child(2) {
      margin-right: 0;
    }
    &:last-child {
      flex-basis: 100%;
      margin: 0;
    }
  }
}

@media screen and (max-width: 680px) {
  .columns .column {
    flex-basis: 100%;
    margin: 0 0 5px 0;
  }
}

p.requirements {
  border: 2px solid white !important;
  padding: 5px;
  text-align: center !important;
  width: 60%;
  margin: 0 auto;
}

/* Component Placeholders - prevent layout shift while loading */
#header-placeholder,
#footer-placeholder {
  min-height: 1px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 30, 0.98);
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 2rem;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--accent-color);
  color: var(--primary-color);
}

.cookie-btn.accept:hover {
  background: var(--accent-color-2);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.cookie-btn.reject:hover {
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

p.notebox {
  background: #1a2229;
  border: 2px solid #c6d96e;
  border-radius: 0 !important;
  margin-bottom: 30px;
  font-size: 1.3rem;
  padding: 2em;
  background-image: url(/images/riso-bg.jpg);
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: color;
}

@media (max-width: 1440px) {
  .description-box {
    width: 60%;
  }
  .columns .column {
    flex-basis: 100% !important;
    margin: 0;
  }
  p.shoutout {
    font-size: 0.9rem !important;
    padding: 12px 10px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo-icon {
    height: 22px;
    width: auto;
  }

  .image-row {
    display: unset;
  }
  .gallery img,
  .image-row img {
    margin-bottom: -10px;
  }

  .description-box p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials-grid {
    display: inline-grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 2rem;
    margin-top: 0;
  }

  .email-signup h2,
  .testimonials h2 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .short-container {
    position: relative;
    z-index: 99;
  }
}

@media (max-width: 987px) {
  nav {
    display: block;
  }

  .description-box h2 {
    font-weight: 3rem;
  }

  .hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
  }

  .hero {
    position: relative;
    height: 25vw;
    min-height: 300px;
  }

  .logo {
    font-size: 2rem;
    width: 100%;
    display: block;
    flex: none;
    text-align: center;
  }

  .logo-icon {
    height: 30px;
    width: auto;
    margin-bottom: -5px;
  }

  .description-box {
    width: 100%;
    padding-right: unset;
  }

  .description-box {
    padding-right: 50px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .description-box {
    float: none;
  }

  p.top-credits {
    padding-right: 0;
    margin-right: -20px;
    font-size: 13px;
    padding-top: 10px;
  }

  .youtube-short {
    display: flex;
    flex-direction: column;
  }

  .youtube-short .first-video {
    order: -1;
  }

  .youtube-short .description-box {
    order: 1;
  }

  .first-video {
    margin-top: -125px !important;
    margin-bottom: 96px;
  }

  .price-tables .section-title {
    font-size: 3rem;
    line-height: 3rem;
  }
  p.requirements {
    width: 90%;
    margin-bottom: 20px;
    margin-top: 12px;
  }

  .youtube-short::after {
  height: 100px;
  }

}

@media (max-width: 400px) {
  .about .container {
    padding: 2rem !important;
    width: 90%;
  }

  section.about p {
    font-size: 1.2rem;
  }

  .section-title {
    margin-bottom: 1rem;
    line-height: 2.3rem;
  }

}

@media (min-width: 1500px) {
  .hero {
    height: 40vw !important;
  }

  .description-box {
    width: 61vw;
  }
}

@media (min-width: 1650px) {
  .description-box {
    width: 60vw;
  }
  .short-container {
    padding-left: 0;
  }
}
