::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.4s;
}

::view-transition-old(root) {
  animation: fade-out 0.4s;
}

::view-transition-new(root) {
  animation: fade-in 0.4s;
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    font-family: 'Orbitron', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
    position: relative;
}

body header
{
    display: none;
}

body .loginHideable
{
    display: none;
}

h1
{
    color: #ffffff;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 213, 136, 0.5);
    letter-spacing: 1px;
}

h2
{
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 213, 136, 0.5);
    letter-spacing: 1px;
}


input.error, textarea.error
{
    border: 1px solid rgba(255, 100, 100, 0.8) !important;
    box-shadow:
        inset 0 0 20px rgba(255, 100, 100, 0.7),
        0 0 10px rgba(255, 100, 100, 0.3) !important;
}

input.inactive, textarea.inactive
{
    border: 1px solid rgba(200, 200, 200, 0.8) !important;
    color: rgba(200, 200, 200, 0.8) !important;
    box-shadow:
        inset 0 0 20px rgba(200, 200, 200, 0.7),
        0 0 10px rgba(200, 200, 200, 0.3) !important;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"],
input[type="date"],
input[type="tel"],
textarea
{
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 173, 96, 0.3);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-family: 'Orbitron', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator
{
    opacity: 0;
}

input[type="date"]::after
{
    content: "";
    position: absolute;
    color: rgb(255, 255, 255);
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;

    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zm0-13H5V6h14v1z'/%3E%3C/svg%3E");
}

input:focus, textarea:focus
{
    outline: none;
    border-color: rgba(255, 173, 96, 0.8);
    box-shadow: 0 0 20px rgba(255, 173, 96, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

input::placeholder, textarea::placeholder
{
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

input[type="checkbox"]
{
    width: 18px;
    height: 18px;
    accent-color: rgb(255, 173, 96);
    margin-right: 10px;
    cursor: pointer;
}

select
{
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 173, 96, 0.3);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-family: 'Orbitron', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}


h6
{
    font-size: 1.4em;
}


h4
{
    font-size: 2em;
}


@keyframes fade-in {
  from { opacity: 0 }
  to   { opacity: 1 }
}

@keyframes fade-out {
  from { opacity: 1 }
  to   { opacity: 0 }
}
body
{
    max-width: 100vw;
    overflow-x: hidden;
}


#background
{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #2e1a0a 100%);
}


#throbbingBackground
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}


#throbbingBackground::before
{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 173, 96, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 213, 136, 0.18) 0%, transparent 60%);
    animation: energy-drift 4s ease-in-out infinite;
    z-index: -1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, opacity;    
}


@keyframes energy-drift
{
    0%
    {
        opacity: 0;
        transform: scale(1) translate(0, 0);
    }

    50%
    {
        opacity: 1;
        transform: scale(1.3) translate(-15px, 30px);
    }

    100%
    {
        opacity: 0;
        transform: scale(1) translate(0, 0);
    }
}


h1
{
    font-size: 2.8em;
    color: #ffffff;
}


h4
{
    font-size: 1.8em;
    color: #ffffff;
}


h5
{
    font-size: 1.5em;
    /* color: rgba(255, 173, 96, 0.8); */
    color: #ffffff;
}


h6
{
    color: #ffffff;
}


span
{
    color: #ffffff;
}


.card
{
    padding: 20px;
}


nav svg
{
    color: #0A0A0A;
    float: left;
    margin-right: 5px;
}


nav .peakey-button
{
    border-radius: 0px !important;
    margin: 0px 0px 5px 0px;
    text-align: left;
    padding: 10px 10px 10px 10px !important;
}


span.error
{
    color: #ff0000;
}


.footerBuffer
{
    height: 50px;
}

.topMenu
{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px 15px 10px;
}

.menuLinks
{
    display: flex;
    align-items: center;
    margin-top: -10px;
    white-space: nowrap;
}


/*  hamburger menu  */
.hamburgerMenu
{
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    z-index: 15;
}


.hamburgerMenu > aside
{
    background-color: rgb(10, 10, 10);
    padding: 5px;
    width: 50px;
    height: 50px;
    border-bottom: solid 1px rgb(255, 173, 96);
    border: none;
    overflow: hidden;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    word-break: keep-all;
}


.hamburgerMenu:has(aside.open)
{
    width: 100vw;
    height: 100%;
}

.hamburgerMenu > aside.open
{
    width: calc(100vw - 15px);
    min-height: 100%;
}

.peakey-hamburger
{
    position: relative;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 4px;
    will-change: transform;
}

.peakey-hamburger:hover
{
    box-shadow: 0 0 15px rgba(255, 173, 96, 0.2);
    transform: scale(1.05);
}

.peakey-hamburger span
{
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 173, 96, 0.9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.peakey-hamburger span:nth-child(1)
{
    transition-delay: 0.05s;
}

.peakey-hamburger span:nth-child(2)
{
    transition-delay: 0.1s;
}

.peakey-hamburger span:nth-child(3)
{
    transition-delay: 0.15s;
}

.peakey-hamburger.open span:nth-child(1)
{
    transform: rotate(45deg) translateY(9px);
    transition-delay: 0.15s;
}

.peakey-hamburger.open span:nth-child(2)
{
    opacity: 0;
    transform: scale(0);
    transition-delay: 0.1s;
}

.peakey-hamburger.open span:nth-child(3)
{
    transform: rotate(-45deg) translateY(-9px);
    transition-delay: 0.05s;
}

@media (max-width: 768px)
{
    .peakey-hamburger
    {
        gap: 5px;
    }

    .peakey-hamburger span
    {
        width: 28px;
        height: 3px;
    }

    .peakey-hamburger.open span:nth-child(1)
    {
        transform: rotate(45deg) translateY(11px);
    }

    .peakey-hamburger.open span:nth-child(3)
    {
        transform: rotate(-45deg) translateY(-11px);
    }
}

/*  /hamburger menu  */

.page .hero .title1
{
    top: 70px;
    width: 100%;
    position: relative;
}

.page .hero .title2
{
    top: 90px;
    width: 100%;
    text-align: center;
    position: relative;
}

.page .hero .buttons
{
    position: absolute;
    bottom: 90px;
    width: 100%;
    text-align: center;
}

.page-contents
{
box-sizing: border-box;
display: block;
font-family: Orbitron, monospace;
margin: 0 auto 32px;
max-width: 1200px;
padding: 0px 24px;
}



.menu-item
{
    background: rgb(10, 10, 10);
    position: relative;
    cursor: pointer;
}

.menu-item.inline
{
    display: inline-block;
}

.menu-item > a, .menu-item > span
{
    font-size: 0.9em;
    padding: 10px;
    text-decoration: none;
    color: #dddddd;
    position: relative;
    display: block;
}


.menu-item > .menu-item-background
{
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.menu-item > .menu-item-background::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.menu-item:hover > a
{
    color: rgb(255, 173, 96);
}


.menu-item:hover > .menu-item-background::before
{
    transition: left 0.5s;
    left: 100% !important;
}

.menu-item .submenu
{
    position: absolute;
    top: 45px;
    left: -3px;
    padding: 0px;
    background-color: rgb(10, 10, 10);
    border: solid 1px rgb(255, 173, 96);
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
}

.menu-item:hover .submenu
{
    display: block;
}

.hero
{
    text-align: center;
    height: 300px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.hero-image
{
    opacity: 0.3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );    
}

.hero-video {
    opacity: 0.3;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;
    display: block;

    object-fit: cover;
    object-position: center center;

    filter: brightness(0.4) contrast(1.05);
    opacity: 0.3;
    z-index: -1;


    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

.carousel {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-decoration: none;
  color: white;

  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.1)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

/*	card	*/
.peakey-card
{
    border: 1px solid rgba(255, 173, 96, 0.8);
    border-radius: 5px;
    background-color: rgb(10, 10, 10);
    color: #ffffff;
    opacity: 1;
    position: relative;
}
/*	/card	*/


/*	buttons	*/

.peakey-buttons
{
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
}


.peakey-button
{
    flex: 1 !important;
    width: 100% !important;
    padding: 10px 20px !important;
    background: linear-gradient(135deg, rgb(255, 173, 96) 0%, rgb(255, 213, 136) 100%) !important;
    border-radius: 8px !important;
    border: none;
    color: #000000 !important;
    font-family: 'Orbitron', monospace !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
    z-index: 1 !important;
    text-transform: initial !important;
    line-height: initial !important;
}


.peakey-button.large
{
    padding: 17px 15px !important;
}


.peakey-button.spacing
{
    margin-bottom: 22px !important;
}


.peakey-button.block
{
    border-radius: 0px !important;
}


.peakey-button.cancel
{
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgb(255, 173, 96) !important;
    border: 1px solid rgba(255, 173, 96, 0.3) !important;
}


.peakey-button.error, .peakey-button.delete
{
    background: rgba(255, 100, 100, 1) !important;
    color: #000000 !important;
    box-shadow: 0 5px 15px rgba(255, 100, 100, 0.3) !important;
}


.peakey-button:hover.error
{
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 5px 15px rgba(255, 100, 100, 0.3) !important;
}


.peakey-button::before
{
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.5s !important;
}


.peakey-button:hover::before
{
    left: 100% !important;
}


.peakey-button:hover
{
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(255, 173, 96, 0.4) !important;
}


.peakey-button.back:hover
{
    box-shadow: 0 10px 30px rgba(255, 173, 96, 0.1) !important;
}


.peakey-button:disabled,
.peakey-button.inactive
{
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 173, 96, 0.4) !important;
    border: 1px solid rgba(255, 173, 96, 0.2) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}


.peakey-button:disabled::before,
.peakey-button.inactive::before
{
    display: none !important;
}


.peakey-button:disabled:hover,
.peakey-button.inactive:hover
{
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
}


.peakey-button.submit
{
    background: linear-gradient(135deg, rgb(255, 173, 96) 0%, rgb(255, 213, 136) 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #000000 !important;

}


.peakey-button.success
{
    background: rgba(100, 255, 100, 1) !important;
    box-shadow: 0 5px 15px rgba(100, 255, 100, 0.3) !important;
}


.peakey-button.inactive
{
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 173, 96, 0.4) !important;
    border: 1px solid rgba(255, 173, 96, 0.2) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}


.peakey-button:hover
{
    transform: translateY(-1px) !important;
}


.peakey-button:hover.success
{
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 5px 15px rgba(100, 255, 100, 0.3) !important;
}


@keyframes pulse-glow
{
    0%
    {
        box-shadow: 0 0 0 0 rgba(255, 173, 96, 0.1);
    }

    70%
    {
        box-shadow: 0 0 0 10px rgba(255, 173, 96, 0);
    }

    100%
    {
        box-shadow: 0 0 0 0 rgba(255, 173, 96, 0);
    }
}


.peakey-button.inactive
{
    animation: pulse-glow 2s infinite;
}


/*	/buttons	*/
/*	grid	*/


.peakey-grid-container
{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
}

.peakey-grid-item
{
    grid-column: span var(--span-xs, 12);
}

@media (min-width: 600px)
{
    .peakey-grid-item
    {
        grid-column: span var(--span-sm, var(--span-xs, 12));
    }
}

@media (min-width: 900px)
{
    .peakey-grid-item
    {
        grid-column: span var(--span-md, var(--span-sm, var(--span-xs, 12)));
    }
}

@media (min-width: 1200px)
{
    .peakey-grid-item
    {
        grid-column: span var(--span-lg, var(--span-md, var(--span-sm, var(--span-xs, 12))));
    }
}

@media (min-width: 1536px)
{
    .peakey-grid-item
    {
        grid-column: span var(--span-xl, var(--span-lg, var(--span-md, var(--span-sm, var(--span-xs, 12)))));
    }
}

/*	/grid	*/


@media (max-width: 900px)
{
    .menu-item > a, .menu-item > span
    {
        font-size: 0.6em;
    }

    .page .hero .title1
    {
        top: 0px;
    }

    .page .hero .title2
    {
        top: 20px;
    }

    .page .hero .buttons
    {
        bottom: 30px
    }

    .page .hero .buttons button
    {
        margin-bottom: 30px !important;
    }

    .footerBuffer
    {
        margin-bottom: 200px;
    }


    .footerSection
    {
        margin-bottom: 30px;
    }

}




@media (max-width: 700px)
{
    h1
    {
        font-size: 2em;
    }

	.menuLinks
	{
		display: none;
	}

	.hamburgerMenu .menuLinks
	{
		display: block;
		white-space: nowrap;
		text-align: left;
	}

	.hamburgerMenu
	{
		display: block;
	}

	.page .hero .title2
	{
		top: 40px;
	}
}




@media (max-width: 550px)
{
    h1
    {
        font-size: 1.7em;
    }

    h5, h6
    {
        font-size: 1.2em;
    }	
}