:root {
    /* Brand Colors */
    --color-black: #000000;
    --color-yellow: #F9BF02;
    --color-white: #FFFFFF;

    /* Optional Variants */
    --color-black-90: rgba(0, 0, 0, 0.9);
    --color-black-70: rgba(0, 0, 0, 0.7);
    --color-yellow-light: #FFE35A;
    --color-yellow-dark: #C89D00;

    /* Neutrals & UI */
    --color-bg: var(--color-white);
    --color-text: var(--color-black);
    --color-accent: var(--color-yellow);
}

body {
    font-family: "Reddit Sans", sans-serif;
    background: var(--color-black);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    /* Prevents horizontal scrolling caused by rotation */
    position: relative;
    /* Establishes positioning context */
}

a:link,
a:visited {
    color: var(--color-yellow);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


h1,
h2 {
    margin-top: 0;
    padding-top: 0;
    letter-spacing: 0.5px;
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

.yellow-text-container {
    font-weight: bold;
}

li {
    margin-bottom: 15px;
}

.big-price {
    text-align: center;
}

.cta {
    background: var(--color-yellow);
    color: #000;
    font-weight: bold;
    font-size: 28px;
    padding: 21px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 0 #c9a800, 0 6px 10px rgba(0, 0, 0, 0.15);
    will-change: transform, box-shadow;
}

/* Hover: subtle lift, glow, and color change */
.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #b49000, 0 8px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(145deg, var(--color-yellow), #ffd84d);
}

/* Active (click): pressed-in look */
.cta:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #b49000, 0 3px 5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #ffcc33, var(--color-yellow));
}

.yellow-divider {
    height: 60px;
    background: var(--color-yellow);
}

.yellow-divider-text {
    background: var(--color-yellow);
    color: var(--color-black);
    margin: auto;
}

.yellow-text-container {
    width: 600px;
    margin: auto;
}

.email-icon {
    float: left;
    margin-top: 20px;
    margin-right: 20px;
}

img.email-icon {
    width: 35px;
}

.big-price {
    font-size: 53px;
    margin-bottom: 20px;
}



/* Example container for the rotating image */
.rotating-bg {
    /* position: absolute; */
    position: fixed;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 1400px;
    /* adjust size as needed */
    height: 1400px;
    background: url('../images/background-rotate.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    /* keeps interaction smooth */

    /* Animation setup */
    animation: spin 200s linear infinite;
    opacity: 0.7;
    z-index: -1;
}

/* The actual rotation */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.container {
    padding-top: 120px !important;
    /* max-width: 1000px; */
    /* margin: auto; */
}

.container {
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.95) 30%,
            rgba(0, 0, 0, 0.8) 60%,
            rgba(0, 0, 0, 0.6) 80%,
            rgba(0, 0, 0, 0.2) 90%,
            rgba(0, 0, 0, 0) 100%);
}

.inner-container {
    width: 600px;
    margin: auto;
    /* width: 100%; */
}

.text-container {
    width: 600px;
    font-size: 20px;
}

.product-box {
    background: url('../images/vpatbox-flat.png') no-repeat;
    height: 400px;
    width: 400px;
    position: absolute;
    margin: -400px 620px;
    z-index: 0;
}

p {
    padding-bottom: 40px;
}

.top-container {
    padding-bottom: 20px;
}

.text-highlight-yellow {
    color: var(--color-yellow);
}

#main-content {
    width: 800px;
}

.top-section {
    max-width: 660px;
}

.reminder {
    font-size: 18px;
    margin-bottom: -10px;
}

.find-out {
    font-size: 18px;
}

.instantly {
    padding-bottom: 0;
}

.big-spanner {
    height: 245px;
    background: url('../images/big-spanner.png') no-repeat;
    width: 200px;
    margin: -238px 620px;
    position: absolute;
}

.inside,
.quick {
    margin-top: 40px;
}

.yellow-hr {
    height: 5px;
    color: var(--color-yellow);
    background: var(--color-yellow);
}

.copyright {
    font-size: 15px;
    margin: auto;
}


.cta-btn {
  display: inline-block;
  appearance: none;
  background: var(--color-yellow);
  color: #000 !important;
  font-weight: bold;
  font-size: 28px;
  padding: 21px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 0 #c9a800, 0 6px 10px rgba(0, 0, 0, 0.15);
  will-change: transform, box-shadow;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #b49000, 0 8px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, var(--color-yellow), #ffd84d);
}

.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #b49000, 0 3px 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, #ffcc33, var(--color-yellow));
}

.cta-btn:focus {
  outline: 3px solid var(--color-yellow-light);
  outline-offset: 3px;
}



@media (max-width: 1024px) {
    .container {
        padding-top: 10px !important;
    }

    main {
        max-width: 90%;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .container {
        padding: 20px;
    }

    .cta {
        width: 100%;
        font-size: 18px;
        padding: 14px;
    }

    .rotating-bg,
    .product-box {
        display: none;
    }

    .container,
    .main-content,
    .text-container {
        width: 380px !important;
    }

    .big-spanner {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    p,
    li {
        font-size: 15px;
    }

    footer {
        font-size: 14px;
    }

    .text-container {
        max-width: 100% !important;
    }

    .rotating-bg,
    .product-box {
        display: none;
    }
}