:root {
    /* Brand Colors */
    --color-electric-blue: #5e32ff;
    --color-electric-blue-hover: #3e1ac1;
    --color-electric-blue-pressed: #2d1486;
    --color-turquoise: #13c1c0;
    --color-turquoise-hover: #0fa9a8;
    --color-turquoise-active: #0c7f7e;
    --color-magenta: #9e1e63;
    --color-magenta-hover: #7f184f;
    --color-magenta-active: #5e103a;
    --color-orange: #ff8128;
    --color-orange-hover: #d85c08;
    --color-orange-active: #a94806;

    /* Supporting Colors */
    --color-white: #fdfdfd;
    --color-black: #000000;
    --color-dark-bg: #0c0000;
    --color-lilac: #cd428a;
    --color-orange-shadow: #c4750d;

    /* Transparent Backgrounds */
    --color-light-purple: #5e32ff44;
    --color-light-turquoise: #13c1c044;
    --color-light-magenta: #9e1e6344;
    --color-light-orange: #f46c0c44;

    --color-overlay-dark: #000000b2;
    --color-overlay-purple: #5e32ffaa;
    --color-overlay-black-soft: #000000c0;

    /* Fonts */
    --font-base: "Open Sans", Helvetica, Arial, sans-serif;
    --font-monument: "Monument Extended", "Special Gothic Expanded One", Helvetica, Arial, sans-serif;
    --font-hookride: "Hookride", "Bebas Neue", Helvetica, Arial, sans-serif;

    /* Font Sizes */
    --fs-h2: 2.3rem;
    --fs-1-5: 1.5rem;
    --fs-1-52: 1.52rem;
    --fs-2-5: 2.5rem;
    --fs-2-9: 2.9rem;
    --fs-2: 2rem;
    --fs-3: 3rem;
    --fs-3-3: 3.3rem;
    --fs-3-5: 3.5rem;
    --fs-4: 4rem;
    --fs-5: 5rem;
    --fs-6: 6rem;
    --fs-7: 7rem;
    --fs-uppercase-a: 4.2em;
    --fs-uppercase-a-mobile: 3.3em;
    --fs-card-title-mobile: 3.3em;
    --fs-subtitle-mobile: 2em;
    --fs-qual: 4em;
    --fs-qual-mobile: 3.2em;
    --fs-save: 1.8em;
    --fs-large: large;
    --fs-20px: 20px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 13px;
    --radius-lg: 20px;

    /* Misc */
    --line-height-tight: 0;
    --line-height-qual: 55.75px;
    --hotel-image-width: 90%;
}

/* -------------------------------------------------------
   Global / Common Utility Classes
   ------------------------------------------------------- */

body {
    font-family: var(--font-base);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h2 {
    font-size: var(--fs-h2);
}

.text-white {
    color: var(--color-white) !important;
}

.font-weight-bold {
    font-weight: 500;
}

.font-weight-semi {
    font-weight: 600;
}

.monument {
    font-family: var(--font-monument);
}

.hookride {
    font-family: var(--font-hookride);
}

.fs-20px {
    font-size: var(--fs-20px);
}

.f1-5 {
    font-size: var(--fs-1-5);
    font-family: var(--font-monument);
    text-transform: uppercase;
}

.f1-52 {
    font-size: var(--fs-1-52);
}

.f2-5 {
    font-size: var(--fs-2-5);
}

.f2-5-card-title {
    font-size: var(--fs-2-5);
}

.f3 {
    font-size: var(--fs-3);
}

.f4 {
    font-size: var(--fs-4);
    font-family: var(--font-monument);
    text-transform: uppercase;
}

.f4-qual {
    font-size: var(--fs-qual);
}

.f5 {
    font-size: var(--fs-5);
}

.f6 {
    font-size: var(--fs-6);
}

.f7 {
    font-size: var(--fs-7);
    font-family: var(--font-monument);
    text-transform: uppercase;
}

.txt-md {
    font-size: larger;
}

.txt-lg {
    font-size: x-large;
}

.text-large {
    font-size: var(--fs-large);
}

.text-larger {
    font-size: var(--fs-larger);
}

.txt-orange {
    color: var(--color-orange);
}

.bold-lilac {
    color: var(--color-lilac);
}

.heading-shadow {
    text-shadow: 0 5px 0 var(--color-orange-shadow);
}

.price-family {
    font-family: var(--font-hookride);
}

.price-line {
    line-height: var(--line-height-tight);
}

.qual-line-height {
    line-height: var(--line-height-qual);
}

.hotel-image-desktop {
    width: var(--hotel-image-width);
}

/* -------------------------------------------------------
   Banner Section
   ------------------------------------------------------- */

.parallax {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/a26-banner.jpg") !important;
}

.mono-nav-secondary {
    background: var(--color-electric-blue);
}

.mono-nav-secondary a {
    color: var(--color-white);
}

.uppercase-a {
    text-transform: uppercase;
    font-family: var(--font-hookride);
    font-size: var(--fs-uppercase-a);
}

.uppercase-b {
    text-transform: uppercase;
    font-family: var(--font-monument);
}

.btn-electric-blue {
    background: var(--color-electric-blue);
    border-radius: var(--radius-md);
}

.btn-electric-blue:hover {
    background: var(--color-electric-blue-hover);
}

.btn-electric-blue:active,
.btn-electric-blue:focus {
    background: var(--color-electric-blue-pressed) !important;
}

/* -------------------------------------------------------
   Built For More Section
   ------------------------------------------------------- */

.built-for-more-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/built-for-more-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.transparent-box-1 {
    background-color: var(--color-overlay-dark);
    border-radius: var(--radius-lg);
}

.border-top-div {
    background-image: linear-gradient(to right, #5E32FF, #9E1F63, #F46C0B, #5E32FF);
}

/* -------------------------------------------------------
   Reserve Your Spot Section
   ------------------------------------------------------- */

.reserve-your-spot-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/reserve-your-spot-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.card,
.bg-cards {
    background-color: transparent;
}

.card {
    border: 3px solid var(--color-black);
    border-radius: var(--radius-sm);
}

.bg-light-purple {
    background-color: var(--color-light-purple);
}

.bg-light-turquoise {
    background-color: var(--color-light-turquoise);
}

.bg-light-magenta {
    background-color: var(--color-light-magenta);
}

.bg-light-orange {
    background-color: var(--color-light-orange);
}

.save {
    font-size: var(--fs-save);
}

.save-electric-blue {
    color: var(--color-electric-blue);
}

.save-electric-turquoise {
    color: var(--color-turquoise);
}

.save-electric-magenta {
    color: var(--color-magenta);
}

.btn-turquoise {
    background: var(--color-turquoise);
    border-color: var(--color-turquoise);
    border-radius: var(--radius-md);
}

.btn-turquoise:hover {
    background: var(--color-turquoise-hover);
    border-color: var(--color-turquoise-hover);
}

.btn-turquoise:focus,
.btn-turquoise:active {
    background: var(--color-turquoise-active) !important;
    border-color: var(--color-turquoise-active) !important;
}

.btn-magenta {
    background: var(--color-magenta);
    border-color: var(--color-magenta);
    border-radius: var(--radius-md);
}

.btn-magenta:hover {
    background: var(--color-magenta-hover);
    border-color: var(--color-magenta-hover);
}

.btn-magenta:focus,
.btn-magenta:active {
    background: var(--color-magenta-active) !important;
    border-color: var(--color-magenta-active) !important;
}

.btn-orange {
    background: var(--color-orange) !important;
    border-color: var(--color-orange) !important;
    border-radius: var(--radius-md) !important;
}

.btn-orange:hover {
    background: var(--color-orange-hover) !important;
    border-color: var(--color-orange-hover) !important;
}

.btn-orange:focus,
.btn-orange:active {
    background: var(--color-orange-active) !important;
    border-color: var(--color-orange-active) !important;
}

/* -------------------------------------------------------
   Grand Prize Giveaway Section
   ------------------------------------------------------- */

.grand-prize-giveaway-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/grand-prize-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* -------------------------------------------------------
   BMW Bring More Winners
   ------------------------------------------------------- */

.bring-more-winners-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/bring-more-winners-bg.jpg?v=20260618");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.lh-h2-adjust {
    line-height: 0.45;
}

/* -------------------------------------------------------
   Schedule Section
   ------------------------------------------------------- */

.schedule-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/schedule-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.tablist-bg {
    background-image: url('https://events.ambitenergy.com/uploads/tablist-schedule-bg.jpg');
    background-size: cover;
    background-position: center;
}

.tablist-row-bg {
    background-color: #00000087;
}

.border-table-bg-1 {
    background-color: #f67b11;
}

.border-table-bg-2 {
    background-color: #5d28c5;
}

.border-table-bg-3 {
    background-color: #2c5bb8;
}

.bg-gradient-border {
    background-image: linear-gradient(to top right, #00A79D, #5E32FF, #9E1F63, #F46C0B);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #f5972c !important;
    background-color: #1d1d1d !important;
}

#nav-two-tab,
#nav-three-tab,
#nav-one-tab {
    color: #f4f4f4;
}

#nav-tabContent .row:hover {
    background: #000000c5 !important;
}

/* -------------------------------------------------------
   Ultimate Experience Section
   ------------------------------------------------------- */

.ultimate-experience-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/ultimate-experience-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(to right, #5E32FF, #9E1F63, #F46C0B, #5E32FF);
  padding: 3px;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  border-radius: 17px;
}

/* -------------------------------------------------------
   Perfect Venue Section
   ------------------------------------------------------- */

.perfect-venue-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/venue-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.transparent-box-2 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.transparent-box-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-purple);
    mix-blend-mode: multiply;
    border-radius: inherit;
    z-index: 0;
}

.transparent-box-2>* {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------
   Perfect Host Hotel Section
   ------------------------------------------------------- */

.perfect-hotel-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/host-hotel-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* -------------------------------------------------------
   Top Performer Qualifications Section
   ------------------------------------------------------- */

.top-performer-qualifications-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/qualifying-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.transparent-box-3 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.transparent-box-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-black-soft);
    mix-blend-mode: multiply;
    border-radius: inherit;
    z-index: 0;
}

.transparent-box-3>* {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------
   EC Power Team Section
   ------------------------------------------------------- */
.ec-power-team-bg {
    background-image: url('https://cdn.ambitenergy.com/images/events-center/ambition-2026/ec-power-team-bg.jpg');
    background-size: cover;
    background-position: center center;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
}

.ec-transparent-box {
    background-image:
        linear-gradient(#ffffff80, #ffffff80),
        url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/cube-bitmap.jpg");
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.ec-transparent-box {
    position: relative;
    background: #ffffffd6;
}

.ec-transparent-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/cube-bitmap.jpg") center / cover no-repeat;
    opacity: 0.7;
    z-index: 0;
    border-radius: 30px;
}

.ec-transparent-box>* {
    position: relative;
    z-index: 1;
}

.ec-logo-size {
    width: 65%;
}

th,
td {
    padding: 13px !important;
}

.table-ec-powerteam thead th {
    background-color: var(--color-electric-blue);
    border: 1px solid var(--color-electric-blue);
    color: white;
}

.table-ec-powerteam thead th:first-child {
    text-align: center;
}

.table-ec-powerteam tbody td:first-child {
    text-align: center;
}

/* First 10 rows: Ambit Orange, bold rank */
.table-ec-powerteam tbody tr:nth-child(-n+10) td,
a,
a:hover {
    color: #f89c1c;
}

.table-ec-powerteam tbody tr:nth-child(-n+10) td:first-child {
    font-weight: bold;
}

/* Rows 11+: black */
.table-ec-powerteam tbody tr:nth-child(n+11) td,
.table-ec-powerteam tbody tr:nth-child(n+11) a,
.table-ec-powerteam tbody tr:nth-child(n+11) a:hover {
    color: #000000;
}

.svg-draw-wrap {
    width: 75%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.svg-draw-wrap svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.svg-draw-wrap.is-visible svg,
.svg-draw-wrap.is-animated svg {
    opacity: 1;
}

.svg-draw-wrap.is-animated svg {
    transform: translateY(0);
}

.svg-draw-wrap svg path,
.svg-draw-wrap svg line,
.svg-draw-wrap svg polyline,
.svg-draw-wrap svg polygon,
.svg-draw-wrap svg rect,
.svg-draw-wrap svg circle,
.svg-draw-wrap svg ellipse {
    vector-effect: non-scaling-stroke;
    transition: fill 0.35s ease;
}

@keyframes svgLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svg-draw-wrap svg {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .svg-draw-wrap svg path,
    .svg-draw-wrap svg line,
    .svg-draw-wrap svg polyline,
    .svg-draw-wrap svg polygon,
    .svg-draw-wrap svg rect,
    .svg-draw-wrap svg circle,
    .svg-draw-wrap svg ellipse {
        animation: none !important;
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }
}


.svg-draw-wrap svg {
    transform: translateY(8px) scale(0.985);
}

.svg-draw-wrap.is-animated svg {
    transform: translateY(0) scale(1);
}

/* -------------------------------------------------------
   Responsive
   ------------------------------------------------------- */
@media (max-width: 767px) {
    .uppercase-a {
        font-size: var(--fs-uppercase-a-mobile);
    }

    .f2-5-card-title {
        font-size: var(--fs-card-title-mobile);
    }

    .sub-title {
        font-size: var(--fs-subtitle-mobile);
    }
    
    .line-height-qual {
        line-height: var(--line-height-qual);
    }

    .f4-qual {
        font-size: var(--fs-qual-mobile);
    }
    
    .fs-3-5 {
        font-size: var(--fs-3-5) !important;
    }
    
    .fs-3-3 {
        font-size: var(--fs-3-3) !important;
    }

    .fs-2-9 {
        font-size: var(--fs-2-9) !important;
    }

    .f7,
    .f5 {
        font-size: var(--fs-6);
    }

    .save {
        font-size: var(--fs-2);
    }
    
    .hero-bg-mobile {
        background-attachment: scroll;
    }
}