/* Rukes */
html {
    scroll-behavior: smooth;
}
body {
    cursor: url('/assets/cursor.png'), auto;
}
a{
    text-decoration: none;
    color: inherit;
}
a, button, .accordion:hover {
    cursor: url('/assets/cursor-a.png'), pointer;
}
*{
    transition: all 0.35s ease-in-out;
}
img{user-drag: none; user-select: none;-moz-user-select: none;-webkit-user-drag: none;-webkit-user-select: none;-ms-user-select: none;}
::-moz-selection {
    background-color: transparent;
    color: #ff774d;
    text-shadow: none;
}
::selection {
    background-color: transparent;
    color: #ff774d;
    text-shadow: none;
}

/* Global */
body {
    background: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: -.5px;
    margin: 0;
    padding: 0;
}
p{
    font-size: .75rem;
}
h1{
    font-size: 2.5rem;
    mix-blend-mode: difference;
    margin: .5em 0 0
}

/* Video Background */
#video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    filter:grayscale(0)invert(1);
}
#video:before{
    content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    backdrop-filter: blur(15px);
	background-color: rgba(0, 0, 0, 0.75); /* dark overlay */
}
.video {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    background: var(--white);
    pointer-events: none;
}
body .bg{
    width: 100vw;
    height: 100vh;
}

/* Structure */
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.dark{
    background-color: rgba(0,0,0,.75);
    background-image: linear-gradient(#000 25%,transparent);
    color: #fff;
}
.container {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 35vh; /* Ensures footer at bottom for short content */
}

/* Hero */
hero {
    position: relative;
    width: 100%;
    height: 75vh;
    padding: 1em 0; /* Add vertical padding for spacing */
    overflow: visible;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 101%;
    background-image: linear-gradient(rgba(0,0,0,.75),transparent,#000);
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-bg .video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 100%;
    z-index: 1;
}
.hero-overlay {
    box-sizing: border-box;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2em;
    color: #fff;
    mix-blend-mode: exclusion;
}
.arrow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
    mix-blend-mode: exclusion;
}
.arrow img {
    width: 35px;
    height: 35px;
    opacity: 0.25;
    filter:invert(1);
    transition: opacity 0.2s;
}
.arrow img {
    animation: arrow-bounce 1.23s infinite ease-in-out;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); opacity: .1; }
}
.arrow img:hover {
    opacity: .5;
}
@media (min-width: 450px) {
    main{
        max-width: 450px;
        margin: 5vh auto;
        box-shadow: 0px 20px 100px rgba(0, 0, 0, 0.5);
        border-radius: 12px;
        outline:solid 7.5px rgba(255,255,255,.5);
    }
    hero{
        overflow: hidden;
        border-radius: 12px;
    }
}
@media (max-width: 450px) {
    main{
        border-radius: 0;
    }
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(rgba(0,0,0,0.85) 0%, transparent 100%);
}
nav {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: .5em;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1em 1em;
}
nav::-webkit-scrollbar {
    display: none;
}
nav a{
    padding: .45em 2.25em;
    background-color: #ff4d9e;
    background-position: center;
    color: #fff;
    border: solid 3.5px #ff4c9c;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1em;
    font-weight: 700;
    text-shadow: 0px 2px 6px #d5002d;
    box-shadow: inset 0px 0px 20px #d5002d90;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
nav a:nth-child(1) {
    transform: rotate(2deg);
}
nav a:nth-child(2) {
    transform: rotate(-1deg);
}
nav a:nth-child(3) {
    transform: rotate(1deg);
}
nav a:nth-child(4) {
    transform: rotate(-1deg);
}
nav a:nth-child(5) {
    transform: rotate(2deg);
}
nav a:nth-child(6) {
    transform: rotate(-1deg);
}
nav a:nth-child(7) {
    transform: rotate(1deg);
}

/* Individual wiggle animations for each rotation */
@keyframes nav-wiggle-1 { /* rotate(2deg) */
    0%, 100% { transform: rotate(2deg) translateX(0); }
    50% { transform: rotate(2deg) translateX(5px); }
}
@keyframes nav-wiggle-2 { /* rotate(-1deg) */
    0%, 100% { transform: rotate(-1deg) translateX(0); }
    50% { transform: rotate(-1deg) translateX(5px); }
}
@keyframes nav-wiggle-3 { /* rotate(1deg) */
    0%, 100% { transform: rotate(1deg) translateX(0); }
    50% { transform: rotate(1deg) translateX(5px); }
}

/* Individual rotate for each nav item */
nav a:nth-child(1) { transform: rotate(2deg); }
nav a:nth-child(2) { transform: rotate(-1deg); }
nav a:nth-child(3) { transform: rotate(1deg); }
nav a:nth-child(4) { transform: rotate(-1deg); }
nav a:nth-child(5) { transform: rotate(2deg); }
nav a:nth-child(6) { transform: rotate(-1deg); }
nav a:nth-child(7) { transform: rotate(1deg); }

/* Wiggle keyframes for each rotation */
@keyframes nav-wiggle-1 { 0%,100%{transform:rotate(2deg) translateX(0);} 50%{transform:rotate(2deg) translateX(5px);} }
@keyframes nav-wiggle-2 { 0%,100%{transform:rotate(-1deg) translateX(0);} 50%{transform:rotate(-1deg) translateX(5px);} }
@keyframes nav-wiggle-3 { 0%,100%{transform:rotate(1deg) translateX(0);} 50%{transform:rotate(1deg) translateX(5px);} }

/* Wiggle animation for nav items when nav is hovered, except the hovered item */
nav:hover a:nth-child(1):not(:hover) { animation: nav-wiggle-1 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0s; }
nav:hover a:nth-child(2):not(:hover) { animation: nav-wiggle-2 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0.1s; }
nav:hover a:nth-child(3):not(:hover) { animation: nav-wiggle-3 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0.2s; }
nav:hover a:nth-child(4):not(:hover) { animation: nav-wiggle-2 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0.3s; }
nav:hover a:nth-child(5):not(:hover) { animation: nav-wiggle-1 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0.4s; }
nav:hover a:nth-child(6):not(:hover) { animation: nav-wiggle-2 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0.5s; }
nav:hover a:nth-child(7):not(:hover) { animation: nav-wiggle-3 0.7s cubic-bezier(.4,0,.2,1) infinite; animation-delay: 0.6s; }

/* On hover, scale and rotate to 0deg, transition smoothly */
nav a:hover {
    scale:.95;
    background-size: 300%;
    box-shadow: inset 0px 0px 20px #d5002d;
}

/* 2025 */
nav a{
    background-color: #ff4d9e;
    background-image: url('/assets/2025/pink.webp');
    background-size: 250%;
    background-repeat: no-repeat;
}

/* Sections */
section,.padded{
    padding: 0 1em;
}
section.full{
    padding: 0;
}

/* Page transitions */
.page {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.page.active {
    display: block;
}

.heading span{
    font-weight: 500;
    font-style: italic;
}
.subheading{   
    margin: 0 auto 2em;
}
.subheading a:hover{
    opacity: .75;
}

/* Home */
.manifesto{
    margin: 2em 0
}
.manifesto h1{
    font-size: 1rem;
    line-height: 1.35;
    text-transform: uppercase;
    max-width: 245px;
    text-align: justify;
    text-align-last: justify;
    margin: 0 auto 0.5em;
    color: #fff;
}
.manifesto h1 span{
    color: #47d1d4;
}
.manifesto h1:hover{
    color: #47d1d4
}
.manifesto h1:hover span{
    color: #fff
}
.manifesto h2{
    font-size: .97rem;
    line-height: 1.35;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 245px;
    text-align: justify;
    text-align-last: justify;
    margin: 0 auto 0.15em;
    color: #fff;
}
.manifesto h2 span{
    color: #d8ff64;
}
.manifesto h2:hover{
    color: #d8ff64
}
.manifesto h2:hover span{
    color: #fff
}
.manifesto-cta{
    display: flex;
    flex-direction: row;
    gap: .5em;
    justify-content: center;
    margin: 1em auto;
}
.manifesto-cta a{
    padding: .5em 1.25em .3em 1.75em;
    background-position: center;
    color: #fc4c02;
    border: solid 2px #fc4c02;
    text-decoration: none;
    border-radius: 99px;
    font-size: .85em;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.manifesto-cta a .iconify{
    font-size: 1.15em;
    line-height: 1;
    margin: 0 0 -2px 5px;
}
.manifesto-cta a:hover{
    background-color: #fc4c02;
    color: #000;
    transform: scale(.98);
}
/* Main button style */
.strava-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75em;
    border: 2px solid #fc4c02;
    background: transparent;
    border-radius: 99px;
    transition: all 0.25s;
    color: #fc4c02;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
}
.strava-btn:hover{
    transform: scale(.98);
}
.strava-btn .iconify {
    background: #fc4c02;
    color: #fff;
    border-radius: 99px;
    padding: .35em .85em .5em .75em;
    font-size: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.strava-btn .cta {
    background: transparent;
    color: inherit;
    font-size: 1em;
    font-weight: 600;
    margin-left: 0em;
    margin-right: 1em;
}
.strava-btn:hover {
    background: #fc4c0225;
    color: #fc4c02;
}

/* About */
#about h1+.superhero{
    margin-top: -1.95em;
}
#about .first{
    width: 100%;
    height: 250px;
    background-image: url('/assets/2025/start.jpg');
    background-size: cover;
}
#about .primary u{
    background-color: #d8ff64;
    color: #d24528;
    text-decoration: none;
}
#about .second u{
    color: #ed5f40;
    font-weight: 600;
}
#about .secondary u{
    background-color: #47d1d4;
    color: #e10059;
    text-decoration: none;
}
#about .third u{
    color: #ea9aff;
    font-weight: 600;
}
#about .text.padded{
    font-weight: 600;
    padding: .5em 1em;
}
#about .primary{
    background-image: url('/assets/bg2023.png');
    background-repeat: repeat;
}
#about .second .text p, #about .third .text p{
    font-size: .75em;
    line-height: 1.5;
}
#about .second,#about .third{
    display: flex;
}
#about .second div, #about .third div{
    flex: 1 1 0;
    padding: 1em;
}
#about .secondary{
    background-image: url('/assets/bg2024.png');
    background-repeat: repeat;
}
#about .text{
    text-align: justify;
}
#about .second .second-image{
    background-image: url('/assets/2025/racevillage.jpg');
    background-size: cover;
}
#about .third .third-image{
    background-image: url('/assets/2025/finish.jpg');
    background-size: cover;
    background-position: 50% 35%;
}
#about .second .second-image:hover, #about .third .third-image:hover{
    filter: brightness(1.15);
}

/* Edition */
#edition .subheading{
    max-width: 260px;
}
#edition h1+.year{
    margin-top: 1em;
}
#edition .year{
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    filter:brightness(.9)
}
#edition .year:hover{
    filter:brightness(1)
}
#edition .year:before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(transparent 30%,rgba(0,0,0,.75) 75%);
    z-index: 1;
}
#edition .twenty21:before{
    background-image:linear-gradient(transparent 50%,rgba(0,0,0,.15) 75%);
}
#edition .year .about{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: self-end;
    justify-content: space-between;
    gap: .5em;
    padding: 1em;
    margin-top: 7.5em;
    mix-blend-mode: exclusion;
    box-sizing: border-box;
}
#edition .year .about .text {
    flex: 7 1 0%;
}
#edition .year .about .links {
    flex: 3 1 0%;
}
#edition .virtual .about {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1em;
}
#edition .year .about .text{
    text-align: left;
}
#edition .year .about h2{
    font-size: 1.35rem;
    line-height: 1.15;
}
#edition .year .about h2,#edition .year .about h3{
    margin: 0;
}
#edition .year .about p{
    font-size: .75rem;
    margin: .5em 0;
}
#edition .year .about .stats{
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
#edition .year .about .stats+.stats{
    margin-top: .25em;
}
#edition .year .about .stats .iconify{
    margin-bottom: -3px;
}
#edition .year .about .links{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    gap: .5em
}
#edition .links a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    border: solid 2px #fff;
    border-radius: 99px;
    padding: .35em .25em;
    transform: scale(1);
}
#edition .links a:hover{
    background-color: #fff;
    color: #000;
    transform: scale(.98);
}
@media (max-width: 409px) {
    #edition .links a span{
        display: none;
    }
}
#edition .twenty25{
    background-image: url('/assets/year/2025.jpg');
}
#edition .twenty24{
    background-image: url('/assets/year/2024.jpg');
}
#edition .twenty23{
    background-image: url('/assets/year/2023.jpg');
}
#edition .twenty22{
    background-image: url('/assets/year/2022.jpg');
}
#edition .twenty21{
    background-image: url('/assets/year/2021.jpg');
    background-position: center 25%;
}
#edition .twenty20{
    background-image: url('/assets/year/2020.jpg');
}

/* Program */
#program h1+.subheading{
    max-width: 400px;
}
#program .pro{
    position: relative;
    width: 100%;
    min-height: 35vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    padding: 2em 1em 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    max-width: 100%;
}
#program .pro+.pro{
    margin-top: 1em;
}
#program .pro:before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
}
#program .pro img{
    max-width: 125px;
}
#program .pro.sundayrun:before{
    background-image:linear-gradient(90deg, #e9006b 0%,transparent);
    background-size: 100% 100%;
    transition: all 0.3s ease-in-out;
}
#program .pro.trainingsession:before{
    background-image:linear-gradient(90deg, #6dd2fe 0%,transparent);
    background-size: 100% 100%;
    transition: all 0.3s ease-in-out;
}
#program .pro.sundayrun:hover::before,
#program .pro.trainingsession:hover::before{
   background-size: 150% 100%;
}
#program .pro .about{
    position: relative;
    z-index: 2;
    text-align: left;
    flex: 0 0 75%;
    max-width: 75%;
    box-sizing: border-box;
}
#program .pro .about p{
    font-size: .65rem;
    max-width: 260px;
    line-height: 1.35;
    margin-bottom: .5em;
}
#program .sundayrun{
    background-image: url('/assets/program/sundayrun.jpg');
}
#program .sundayrun .about{
    text-shadow: 0px 2px 6px rgba(65, 0, 0);
}
#program .trainingsession{
    background-image: url('/assets/program/trainingsession.jpg');
}
#program .trainingsession .about{
    text-shadow: 0px 2px 6px rgb(0, 40, 65);
}
#program .pro span{
    font-size: .65rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: none;
    padding: .25em 1em .35em;
    border-radius: 99px;
    color: #fff;
    background-color: rgba(0,0,0,.4);
}
#program .pro .register {
    flex: 1 0;
    border: solid 2px #fff;
    border-radius: 10px;
    padding: .75em .75em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(5px);
    text-shadow: none;
    margin-top: 1em;
}
#program .sundayrun .register {
    animation: register-bounce 1.2s infinite;
}
@keyframes register-bounce {
    0%, 100% { transform: scale(1.015); }
    50% { transform: scale(1); background:#9d055050; box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
}
#program .sundayrun .register{
    background:#d5002d50;
    box-shadow: 0px 6px 12px rgba(116, 0, 25, 0.75);
}
#program .trainingsession .register{
    background:#4d95b450;
    box-shadow: 0px 6px 12px #00000075;
}
#program .sundayrun .register:hover{
    background:rgba(255,255,255,.85);
    color: #9d0550;
    border-color: #9d0550;
    box-shadow: 0px 0px 10px rgba(116, 0, 25, 0.75);
    transform: scale(.99);
    animation-play-state: paused;
}
#program .trainingsession .register:hover{
    background:#fff;
    color: #326880;
    border-color: #326880;
    box-shadow: 0px 0px 10px #00000050;
    transform: scale(.99);
}
#program .pro .register .title{
    font-size: .75rem;
    font-weight: 600;
    margin: 0 0 .25em;
}
#program .pro .register .details{
    font-size: .65rem;
    letter-spacing: .5px;
    margin: 0 0 .5em;
    text-transform: uppercase;
    padding: 0 0 .5em;
    border-bottom: solid 2px #fff;
}
#program .sundayrun .register:hover .details{
    border-color: #9d0550;
}
#program .trainingsession .register:hover .details{
    border-color: #326880;
}
#program .pro .register .cta{
    font-size: .95rem;
    font-weight: 700;
    margin: 0 0 0;
}

/* Gallery */
#gallery .subheading img{
    max-width: 60px;
    margin: 0 0 -.5em .25em;
}
#gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#gallery .gallery > div {
  flex: 0 0 calc(33.333% - 0.67em);
  width: calc(33.333% - 0.67em);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
#gallery .gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
#gallery .gallery p{
    font-size: .75rem;
    line-height: 1.25;
    margin: .5em 0 0;
}
#gallery .gallery p+p{
    margin:0
}
#gallery .gallery .title{
    font-weight: 700;
}
#gallery .gallery .date{
    font-size: .65rem;
}
#gallery .gallery:hover div{
    transform: scale(1);
    filter: blur(1px)brightness(.75);
}
#gallery .gallery div:hover{
    transform: scale(1.01);
    filter: blur(0)brightness(1.1);
}
.gallery+button{
    margin-top: 2em;
}
button{
    background:transparent;
    border: solid 2px #fff;
    color: #fff;
    padding: .5em 1.5em .3em;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: -.05px;
    transition: all 0.3s ease-in-out;
}
button:hover{
    background-color: #fff;
    color: #000;
    letter-spacing: -.5px;
}

/* Playlist */
#playlist .subheading{
    max-width: 100%;
}
#playlist .playlists {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    min-width: 0;
    width: 100%;
}
#playlist .playlists a {
    flex: 0 0 calc(50% - 0.5em); /* subtract half the gap from each side */
    width: calc(50% - 0.5em);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
#playlist .playlists img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    box-shadow: 0px 10px 20px rgba(0,0,0,0);
}
#playlist .playlists a:hover img{
    transform: perspective(500px) rotateX(10deg);
    transform-style: preserve-3d;
    box-shadow: 0px 10px 20px #000;
    filter:brightness(1.1)
}
#playlist p{
    margin-bottom: 2em;
}
#playlist iframe{
    margin-bottom: 1em;
}

/* Connect */
#connect .contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.5em;
    margin-bottom: 2em;
}
#connect .contact a {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#connect .contact a {
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1;
    border: solid 3px #fff;
    overflow: hidden;
}
#connect .contact a .iconify{
    margin: .25em;
}
#connect .contact a .destination{
    padding: .75em;
    width: 100%;
    background-image: linear-gradient(rgba(255,255,255,.35), transparent);
    font-size: .85rem;
    line-height: 1;
    margin: 0;
}
#connect .contact a span{
    display: block
}
#connect .contact .email{
    background-color: #d8ff64;
    color: #59c6cb;
    transform: rotate(-5deg) translateY(0px);
}
#connect .contact .email:hover{
    transform: rotate(0deg) translateY(5px);
}
#connect .contact .ig{
    background-color: #ef519d;
    color: #d8ff64;
    transform: rotate(1deg) translateY(10px);
}
#connect .contact .ig:hover{
    transform: rotate(0deg) translateY(15px);
}
#connect .contact .tiktok{
    background-color: #59c6cb;
    color: #6a59a9;
    transform: rotate(5deg) translateY(35px);
}
#connect .contact .tiktok:hover{
    transform: rotate(0deg) translateY(25px);
}
#connect .contact a:hover{
    filter:brightness(1.1);
}
.emailForm{
    margin: 5em auto 2em;
}
.emailForm form {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.emailForm input[type="text"],
.emailForm input[type="email"] {
    flex: 1 1 45%;
    min-width: 0;
    box-sizing: border-box;
}
.emailForm textarea {
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}
.emailForm button,
.emailForm .h-captcha {
    flex: 1 1 100%;
}
.emailForm form input,
.emailForm form textarea{
    background: transparent;
    color: #fff;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom: solid 2px #fff;
    font-family: 'Poppins', sans-serif;
    padding: 5px;
}
.emailForm form input:active,
.emailForm form input:focus,
.emailForm form textarea:active,
.emailForm form textarea:focus{
    outline: none;
    border-bottom: solid 2px #47d1d4;
}
.emailForm h3{
    margin-bottom: 0;
}
.emailForm p{
    margin: 0;
}

/* Race Rules */
#rules p{
    font-size: .75rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 1em;
    letter-spacing: 0;
}
#rules #rr p:first-child{
    font-size: .7rem;
}
#rules strong {
    color: #ff4d9e;
}
#rules a strong {
    color: #d8ff64;
}
#rules a:hover strong{
    color: #47d1d4;
}
#rules #rr ol li {
    font-size: .65rem;
    font-weight: normal;
    text-align: justify;
    line-height: 1.75;
    letter-spacing: 0;
    padding: 0px 10px;
    list-style: decimal;
    list-style-position: outside;
    display: list-item;
}
#rules #rr ol li,
#rules #rr p,
#rules #rr h3 {
    transition: all .75s ease;
}
#rules #rr:hover ol li,
#rules #rr:hover p,
#rules #rr:hover h3 {
    filter: blur(1px);
    -webkit-filter: blur(1px);
    opacity: .75;
}
#rules #rr ol li:hover,
#rules #rr p:hover,
#rules #rr h3:hover {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    opacity: 1;
}
#rules #rr h3 {
    color: #ea99ff;
    margin: 1em 0 .5em;
    border-top: solid 1px #d8ff64;
    padding-top: 1em;
    font-weight: 700;
    margin-bottom: 1em;
}
#rules #rr table {
    width: 100%;
    border-collapse: collapse;
    margin: 5px 0
}
#rules #rr table .hd {
    color: #000;
    background: #ea99ff;
    font-weight: bold
}
#rules #rr table td {
    border: solid 1px #ea99ff;
    padding: 5px;
}
#rules #rr table td strong {
    color: #d8ff64
}

/* Footer */
footer {
    text-align: center;
    padding: 1em 0;
    width: 100%;
}
footer hr{
    margin: 1em;
    border-top-width: 1px;
    border-style: solid;
    border-bottom-width: 0px;
}
h6{
    font-size: .75em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1.5em;
}
h6 span{
    font-weight: 500;
    font-style: italic;
}
.support,.social,.copyright{
    padding: 0 1em;
}
.support{
    margin-top: 1em;
}
.support div{
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1em;
}
.support div img {
    max-height: 18px;
}
.support div img:hover,
.partner img:hover {
    transform: scale(1.05);
}
.partner{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 1em;
}
.partner h6{
    font-size: .65rem;
    line-height: 1.25;
}
.partner img {
    max-height: 28px;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 2em; /* space between columns */
    max-width: 240px;
    margin: 0 auto 1em;
    padding: 0 1em;
}
.copyright .icon {
    flex: 0 0 auto; /* do not grow/shrink, width is image width */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.copyright .icon::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1em;
    width: 1%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
}
.copyright .icon img {
    display: block;
    width: 30px;
    height: auto;
}
.copyright .text {
    flex: 1 1 0;
    text-align: justify;
}
.copyright p{
    font-size: 0.45em;
    margin: .75em auto;
}