/* ===================================================
   ActiveLifeChallenge - Main Stylesheet
   Színek: Fekete (#000), Fehér (#fff), Narancs (#FF6B00)
   =================================================== */

:root {
    --orange: #FF6B00;
}

/* --- BASE --- */
body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
}

.display {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.02em;
}

/* --- CUSTOM UTILITY CLASSES --- */
.text-orange {
    color: var(--orange);
}

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

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

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

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .header-inner {
        padding: 0 2rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
}

.logo-text {
    line-height: 1;
}

.logo-title {
    font-weight: 900;
    letter-spacing: -0.025em;
    font-size: 17px;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -2px;
}

/* Desktop nav */
.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.main-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.text-orange {
    color: var(--orange);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}


.btn-login {
    display: flex;
    height: 40px;
    padding: 0 1.25rem;
    align-items: center;
    background: var(--orange);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}


.btn-login-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .btn-login-desktop {
        display: flex;
    }
}

.btn-login:hover {
    background: #fff;
}

.btn-menu {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .btn-menu {
        display: none;
    }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-inner {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.mobile-menu-inner a {
    color: #fff;
    text-decoration: none;
}


.mobile-menu-inner .btn-login {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
    display: flex;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 0, 0.15), transparent 60%);
}

.hero-circle-lg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-circle-sm {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    width: 100%;
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 5rem 2rem;
    }
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.05);
    padding: 0.375rem 0.75rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-badge-text {
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--orange);
}

/* Hero heading */
.hero-heading {
    font-size: clamp(56px, 9vw, 128px);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.hero-heading .outline-text {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

/* Hero description */
.hero-desc {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.6;
}

.hero-desc strong {
    color: #fff;
    font-weight: 400;
}

/* Hero buttons */
.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    height: 52px;
    padding: 0 2rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--orange);
}

.btn-secondary {
    height: 52px;
    padding: 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Hero stats */
.hero-stats {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 900;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Hero medal mockup */
.hero-medal-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-medal-wrap {
        height: 600px;
    }
}

.medal-outer {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.medal-inner {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #000;
    border: 12px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-text {
    text-align: center;
}

.medal-title {
    font-size: 4.5rem;
    line-height: 1;
}

.medal-subtitle {
    color: var(--orange);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-top: 0.5rem;
}

.medal-line {
    width: 4rem;
    height: 2px;
    background: var(--orange);
    margin: 0.75rem auto 0;
}

.medal-glow {
    position: absolute;
    inset: -2.5rem;
    background: rgba(255, 107, 0, 0.2);
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}

/* Floating cards around medal */
.float-card {
    position: absolute;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.float-card-1 {
    top: -2rem;
    left: -4rem;
    background: #fff;
    color: #000;
    transform: rotate(-8deg);
}

.float-card-2 {
    bottom: -1rem;
    right: -3rem;
    background: var(--orange);
    color: #000;
    transform: rotate(6deg);
}

.float-card-3 {
    position: absolute;
    top: 50%;
    right: -5rem;
    transform: translateY(2rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
}

.float-card-3 .label {
    color: rgba(255, 255, 255, 0.5);
}

.float-card-3 .value {
    font-weight: 700;
    color: var(--orange);
}

/* Mobile hero medal fix */
@media (max-width: 768px) {
    .medal-outer {
        width: 240px;
        height: 240px;
    }

    .medal-inner {
        width: 190px;
        height: 190px;
        border: 8px solid #fff;
    }

    .medal-title {
        font-size: 3rem;
    }

    .medal-subtitle {
        font-size: 0.6rem;
    }

    .float-card {
        font-size: 0.7rem;
        padding: 0.5rem 0.7rem;
    }

    .float-card-1 {
        top: -1rem;
        left: -1.5rem;
    }

    .float-card-2 {
        bottom: -0.5rem;
        right: -1rem;
    }

    .float-card-3 {
        right: -1.5rem;
        top: 50%;
        transform: translateY(1rem);
        font-size: 0.65rem;
    }
}

/* --- KIHÍVÁSOK SECTION --- */
.section-challenges {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
    color: #000;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

@media (min-width: 1024px) {
    .section-inner {
        padding: 6rem 2rem;
    }
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 72px;
    }
}

.section-header-right {
    display: none;
    text-align: right;
}

@media (min-width: 768px) {
    .section-header-right {
        display: block;
    }
}

.section-header-right p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 300px;
}

/* Challenge cards grid */
.cards-grid {
    display: grid;
    gap: 1px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sport-card {

    display: flex;
    flex-direction: column;
    background: #181818;
    color: #fff;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    padding: 24px;

    text-align: left;

    transition: .2s;

}

.sport-card-light {

    background: #f7f7f7;

    color: #111;

    border: 1px solid rgba(255,122,0,.15);

}

.sport-card-light:hover {

    background: #fff;

    border-color: #ff7a00;

    box-shadow:
        0 10px 30px rgba(255,122,0,.15);

}

.sport-card-dark {

    background: #050505;

    border: 1px solid rgba(255,136,0,.20);


}

.sport-card-dark:hover {


    border-color: #ff8800;

    background: #0c0c0c;
}

.sport-card-number {

    font-size: 64px;
    line-height: 1;

    font-weight: 900;

    color: rgba(255,122,0,.12);

}



.sport-card-light:hover .sport-card-number {

    color: rgba(255,122,0,.25);

}

.sport-card-light:hover .sport-card-title {

    color: #ff7a00;

}

.sport-card-dark .sport-card-number {

    color: rgba(255,136,0,.12);

    font-size: 72px;

}

.sport-card-dark .sport-card-title {

    color: #ffffff;

}

.sport-card-dark:hover .sport-card-title {

    color: #ff8800;

}

.sport-card-dark:hover .sport-card-number {

    color: rgba(255,136,0,.22);

}

.sport-card-title {

    color: #111;
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 1rem;
    margin-bottom: .75rem;

}

.sport-card-desc {

    flex-grow: 1;
    font-size: .875rem;
    color: #666;
    line-height: 1.6;

}

.sport-card-light:hover .sport-card-desc {

    color: #444;

}

.sport-card-dark .sport-card-desc {

    color: rgba(255,255,255,.75);

}

.sport-card-dark .sport-card-link {

    color: #ffffff;

}

.sport-card-dark:hover .sport-card-desc {

    color: #ff8800;

}

.sport-card-link {

    display: inline-flex;

    align-items: center;
    gap: .5rem;

    width: fit-content;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 8px 14px;
    transition: all .2s ease;
    border: 1px solid rgba(255,136,0,.3);
    border-radius: 8px;

}

.sport-card-link:hover {

    color: #ff8800;
    background: rgba(255,136,0,.1);
    border-color: #ff8800;
    transform: translateX(4px);

}

.sport-card-link svg {

    transition: all .2s ease;

}

.sport-card-link:hover svg {

    transform: translateX(4px);

}


.sport-card-dark:hover .sport-card-link {

    color: #ffffff;


}

/* --- HOGYAN MŰKÖDIK --- */
.section-how {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.how-title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .how-title {
        font-size: 64px;
    }
}

.steps-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.step {
    position: relative;
    padding-left: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .step {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 3rem;
        padding-left: 0;
    }

    .step:nth-child(1) {
        padding-right: 3rem;
    }

    .step:nth-child(2) {
        padding: 3rem 3rem 0;
    }

    .step:nth-child(3) {
        padding-left: 3rem;
        padding-top: 3rem;
    }
}

.step-number {
    position: absolute;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.875rem;
    color: #000;
}

.step:nth-child(1) .step-number {
    background: var(--orange);
}

.step:nth-child(2) .step-number,
.step:nth-child(3) .step-number {
    background: #fff;
}

/* Mobile positioning */
.step .step-number {
    left: -13px;
}

@media (min-width: 1024px) {
    .step:nth-child(1) .step-number {
        left: 0;
        top: -13px;
    }

    .step:nth-child(2) .step-number,
    .step:nth-child(3) .step-number {
        left: 3rem;
        top: -13px;
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* --- ÉRMEK SECTION --- */
.section-medals {
    background: #fff;
    color: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.medals-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .medals-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.medals-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.medals-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.medals-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.check-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-item span {
    font-weight: 500;
}

/* Medal display box */
.medal-display {
    aspect-ratio: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.medal-display-scanlines {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.03) 50%);
    background-size: 100% 4px;
}

.medal-display-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.medal-display-outer {
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
    border-radius: 50%;
    border: 14px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-display-inner {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    border: 4px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-display-inner span {
    font-size: 3rem;
    color: #fff;
}

.medal-display-label {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
}

.medal-display-glow {
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 107, 0, 0.3);
    filter: blur(100px);
    border-radius: 50%;
}

.medal-slider{

    position:relative;

    width:100%;
    height:100%;

    perspective:2200px;

    display:flex;
    justify-content:center;
    align-items:center;

}

.medal-slide{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:5%;

    box-sizing:border-box;

    flex-direction:column;

    opacity:0;

    transform:rotateY(-180deg) scale(.95);

    transform-style:preserve-3d;

    backface-visibility:hidden;

    transition:

        transform .9s cubic-bezier(.22,.61,.36,1),

        opacity .9s;

}

.medal-slide.active{

    opacity:1;

    transform:rotateY(0deg) scale(1);

    z-index:5;

    animation:medalFloat 6s ease-in-out infinite;

}

.medal-slide.out{

    opacity:0;

    transform:rotateY(180deg) scale(.92);

    z-index:1;

}

.medal-slide img{

    width:100%;

    height:100%;

    object-fit:contain;

    filter:

        drop-shadow(0 15px 35px rgba(0,0,0,.45))

        drop-shadow(0 0 40px rgba(255,107,0,.12));

    transition:.35s;

}

.medal-display-content{

    display:flex;

    flex-direction:column;

    align-items:center;

    transition:.35s;

}

.medal-display-content:hover{

    transform:scale(1.02);

}

.medal-slide.active img:hover{

    transform:

        scale(1.04)

        rotateZ(.5deg);

    filter:

        drop-shadow(0 15px 35px rgba(0,0,0,.55))

        drop-shadow(0 0 70px rgba(255,107,0,.35));

}

.medal-display-outer{

    transition:.4s;

    box-shadow:

        0 0 0 rgba(255,107,0,0),

        inset 0 0 0 rgba(255,107,0,0);

}

.medal-display-content:hover .medal-display-outer{

    box-shadow:

        0 0 40px rgba(255,107,0,.18),

        inset 0 0 25px rgba(255,107,0,.08);

}

.medal-display-inner{

    transition:.4s;

}

.medal-display-content:hover .medal-display-inner{

    transform:scale(1.03);

}

.medal-display-label{

    margin-top:26px;

    letter-spacing:.35em;

    color:rgba(255,255,255,.55);

    transition:.35s;

}

.medal-display-content:hover .medal-display-label{

    color:white;

    letter-spacing:.45em;

}

.medal-slide::before{

    content:"";

    position:absolute;

    inset:-120%;

    background:

        linear-gradient(

            110deg,

            transparent 35%,

            rgba(255,255,255,.08) 50%,

            transparent 65%

        );

    transform:translateX(-120%) rotate(10deg);

    pointer-events:none;

}

.medal-slide.active::before{

    animation:shine 5s linear infinite;

}

@keyframes shine{

    0%{

        transform:translateX(-150%) rotate(10deg);

    }

    100%{

        transform:translateX(180%) rotate(10deg);

    }

}

@keyframes medalFloat{

    0%{

        transform:

            rotateY(0deg)

            translateY(0px)

            scale(1);

    }

    50%{

        transform:

            rotateY(0deg)

            translateY(-10px)

            scale(1.01);

    }

    100%{

        transform:

            rotateY(0deg)

            translateY(0px)

            scale(1);

    }

}

.medal-display-glow{

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(255,107,0,.16),

        transparent 72%);

    filter:blur(60px);

    animation:glowPulse 6s ease infinite;

    pointer-events:none;

}

@keyframes glowPulse{

    0%{

        transform:scale(.9);

        opacity:.45;

    }

    50%{

        transform:scale(1.1);

        opacity:.8;

    }

    100%{

        transform:scale(.9);

        opacity:.45;

    }

}


/* --- KÖZÖSSÉG SECTION --- */
.section-community {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.community-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .community-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.community-title {
    font-size: 48px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .community-title {
        font-size: 64px;
    }
}

.community-title .faded {
    color: rgba(255, 255, 255, 0.4);
}

.community-stat {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Testimonial cards */
.testimonials-grid {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #0a0a0a;
    padding: 2rem;
}

.testimonial-card.featured {
    border: 1px solid rgba(255, 107, 0, 0.5);
    position: relative;
}

.testimonial-top-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--orange);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.05em;
}

.testimonial-quote {
    color: var(--orange);
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-avatar.highlight {
    background: var(--orange);
    color: #000;
}

.author-name {
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- CTA SECTION --- */
.section-cta {
    background: var(--orange);
    color: #000;
}

.cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
    .cta-inner {
        padding: 5rem 2rem;
    }
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
    }
}

.cta-title {
    font-size: 48px;
    line-height: 0.9;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 64px;
    }
}

.cta-desc {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.8;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cta-primary {
    height: 56px;
    padding: 0 2.5rem;
    background: #000;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-primary:hover {
    background: #fff;
    color: #000;
}

.btn-cta-secondary {
    height: 56px;
    padding: 0 2.5rem;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background: #000;
    color: var(--orange);
}

/* --- FOOTER --- */
.site-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        padding: 0 2rem;
    }
}

@media (max-width:768px){

    .footer-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .footer-links a:nth-last-child(2),
    .footer-links a:last-child{
        flex:0 0 calc(50% - 6px);
        text-align:center;
    }

}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.footer-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* --- LOGIN MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.modal-overlay.open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-container {
    display: flex;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-box {
    width: 90vw;
    max-width: 1400px;
    background: #fff;
    color: #000;
}

.modal-header {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    width: 100%;
    text-align: center;
    color: #fff;
    margin: 0;
}

.btn-close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;

    color: #ff7a00;

    font-size: 28px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .2s;
}

.btn-close:hover {
    color: #fff;
}

.modal-body {
    flex: 1;

    overflow-y: auto;
}
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.form-group input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--orange);
}

.btn-submit {
    margin-top: 1.5rem;
    width: 100%;
    height: 48px;
    background: var(--orange);
    color: #000;
    font-weight: 900;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #000;
    color: var(--orange);
}

.btn-submit:disabled {
    background: #4a4a4a;
    color: #9a9a9a;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.75;
}

.btn-submit.enabled {
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    cursor: pointer;
    opacity: 1;
}

.signup-btn-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.signup-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;

    padding: 12px 16px;
    min-width: 320px;
    max-width: 420px;

    border-radius: 14px;
    background: rgba(18, 12, 8, 0.97);
    border: 1px solid rgba(255, 140, 0, 0.25);

    color: #f2f2f2;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,140,0,0.08);

    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.2s ease;
}

.signup-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.modal-footer-text {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.modal-footer-text span {
    color: rgba(0, 0, 0, 0.6);
}

.modal-footer-text a {
    font-weight: 700;
    color: #000;
    text-decoration: none;
    margin-left: 0.25rem;
}

.modal-footer-text a:hover {
    color: var(--orange);
}

/* ===================================================
   AUTH PAGES (signin.html, signup.html)
   =================================================== */

.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1.5rem 3rem;
}

.auth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
}

.auth-box-wide {
    max-width: 640px;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.auth-form .form-group {
    margin-bottom: 1rem;
}

.auth-form .form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.auth-form .form-group input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.auth-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.auth-form .form-group input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.auth-form .btn-submit {
    margin-top: 0.5rem;
    width: 100%;
    height: 52px;
    background: var(--orange);
    color: #000;
    font-weight: 900;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.auth-form .btn-submit:hover {
    background: #fff;
}

/* Form layout helpers */
.form-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section-label:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 500px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-row-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 500px) {
    .form-row-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.password-wrapper {
    position: relative;
}

.password-requirements {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    z-index: 999;

    padding: 16px 18px;
    border-radius: 16px;

    background: rgba(18, 12, 8, 0.97);
    border: 1px solid rgba(255, 140, 0, 0.28);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 140, 0, 0.08);

    backdrop-filter: blur(12px);

    font-size: 14px;
    color: #f5f5f5;
    line-height: 1.8;

    animation: fadeInUp 0.18s ease;
}

.password-requirements.show {
    display: block;
}

.password-requirements div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #9a9a9a;
    transition: all 0.2s ease;
}

.password-requirements div:last-child {
    margin-bottom: 0;
}

.password-requirements div::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #666;
    background: rgba(255,255,255,0.03);
    transition: all 0.2s ease;
}

.password-requirements div.valid {
    color: #f5f5f5;
}

.password-requirements div.valid::before {
    color: #ff7a00;
    border-color: rgba(255, 122, 0, 0.45);
    background: rgba(255, 122, 0, 0.08);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 16px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    color: #f5f5f5;
    font-size: 15px;
    font-family: 'Inter', sans-serif;

    outline: none;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all 0.2s ease;
}

.custom-select:hover {
    border-color: rgba(255, 122, 0, 0.35);
}

.custom-select:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.custom-select option {
    background: #151515;
    color: #f5f5f5;
}

.custom-select-wrapper::after {
    content: "⌄";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7a00;
    font-size: 18px;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-footer-text {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.auth-footer-text span {
    color: rgba(255, 255, 255, 0.5);
}

.auth-footer-text a {
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    margin-left: 0.25rem;
}

.auth-footer-text a:hover {
    color: #fff;
}

.auth-back-link {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-back-link:hover {
    color: #fff;
}

/* ===================================================
   FLASH MESSAGES
   =================================================== */

.flash-messages {
    margin-bottom: 1.5rem;
}

.flash-msg {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flash-error {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    color: #ff6b6b;
}

.flash-success {
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgba(0, 200, 100, 0.3);
    color: #00c864;
}

/* ===================================================
   DASHBOARD
   =================================================== */

.dashboard-page {
    min-height: 100vh;
    padding-top: 72px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.dashboard-page::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-page::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-page > .section-inner {
    position: relative;
    z-index: 1;
}

/* --- WELCOME HEADER - COSÁR STÍLUS --- */
.dash-welcome {
    padding-top: 3rem;
    margin-bottom: 3rem;
}

/* Section label - mint a cart-header-left */
.dash-welcome .section-label {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Cím - outline stílus mint kosár */
.dash-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

/* Outline szöveg - mint a kosár "A TE" */
.dash-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

/* Alcím */
.dash-subtitle {
    margin-top: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
}

.dash-subtitle span {
    color: #ff7a00;
    text-shadow: 0 0 12px rgba(255,122,0,0.45);
}

.dash-subtitle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff7a00;
    box-shadow: 0 0 12px rgba(255,122,0,0.8);
}

/* --- STATS - KOSÁR ELEM STÍLUS --- */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .dash-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Egyes stat elem - kosár item stílus */
.dash-stat-item {
    background: #0a0a0a;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: background 0.25s ease;
}

.dash-stat-item:hover {
    background: #121212;
}

/* Bal oldali narancs csík hoverre - mint kosár item */
.dash-stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.dash-stat-item:hover::before {
    transform: scaleY(1);
}

/* Stat szám */
.dash-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* km egység */
.dash-stat-unit {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Stat címke */
.dash-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* --- AKCIÓ KÁRTYÁK - KOSÁR SUMMARY STÍLUS --- */
.dash-actions {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Egy akció kártya */
.dash-action-card {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #0a0a0a;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.25s ease;
    position: relative;
}

.dash-action-card:hover {
    background: #121212;
}

/* Bal oldali narancs csík hoverre */
.dash-action-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.dash-action-card:hover::before {
    transform: scaleY(1);
}

/* Sorszám (01, 02, 03) - kosár item-number stílus */
.dash-action-number {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 107, 0, 0.5);
    text-align: center;
    transition: all 0.25s ease;
}

.dash-action-card:hover .dash-action-number {
    -webkit-text-stroke: 1.5px var(--orange);
    transform: scale(1.05);
}

/* Tartalom blokk */
.dash-action-content {
    min-width: 0;
}

/* Ikon */
.dash-action-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Kártya cím */
.dash-action-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.375rem 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Kártya leírás */
.dash-action-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}

/* Jobb oldali nyíl */
.dash-action-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--orange);
    transition: all 0.25s ease;
}

.dash-action-card:hover .dash-action-arrow {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--orange);
    transform: translateX(4px);
}

/* --- MOBIL RESPONSIVE --- */
@media (max-width: 640px) {
    .dash-stats {
        gap: 1px;
    }
    
    .dash-stat-item {
        padding: 1.5rem 1rem;
    }
    
    .dash-stat-number {
        font-size: 2rem;
    }
    
    .dash-action-card {
        grid-template-columns: 60px 1fr 40px;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .dash-action-number {
        font-size: 2rem;
    }
    
    .dash-action-title {
        font-size: 1rem;
    }
    
    .dash-action-desc {
        font-size: 0.75rem;
    }
    
    .dash-subtitle {
        font-size: 1.25rem;
    }
}

.dash-welcome {
    padding-top: 3rem;
    margin-bottom: 2rem;
}

.dash-title {
    font-size: 56px;
    line-height: 1;
}

@media (min-width: 768px) {
    .dash-title {
        font-size: 72px;
    }
}

.dash-subtitle {
    margin-top: 18px;

    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;

    letter-spacing: 0.02em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.92);

    opacity: 0.92;
}

.dash-subtitle span {
    color: #ff7a00;

    text-shadow:
        0 0 10px rgba(255,122,0,0.28);
}

.dash-subtitle::before {
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ff7a00;

    box-shadow:
        0 0 12px rgba(255,122,0,0.8),
        0 0 24px rgba(255,122,0,0.35);
}

.dash-subtitle span {
    color: #ff7a00;

    text-shadow:
        0 0 12px rgba(255,122,0,0.45),
        0 0 24px rgba(255,122,0,0.18);
}



.dash-stat-number {
    font-size: 2rem;
    font-weight: 900;
}

.dash-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.35rem;
}

.dash-empty-icon {
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.dash-empty-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dash-empty-desc {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}


.profile-modal {
    width: min(1000px, 95vw);
}

.profile-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
    width: 100%;
    margin-top: 0;
}

.profile-panel.open {
    max-height: 1400px;
    opacity: 1;
    margin-top: 28px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    padding: 28px;
    border-radius: 24px;

    background: rgba(18, 12, 8, 0.88);
    border: 1px solid rgba(255,122,0,0.12);

    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.profile-item {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
}

.profile-item label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* INPUTS + SELECTS */
.profile-item input,
.profile-item select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.03);
    color: white;

    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;

    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* DISABLED */
.profile-item input:disabled,
.profile-item select:disabled {
    opacity: 0.75;
    cursor: default;
    pointer-events: none;
}

/* EDIT MODE INPUT */
.profile-item input:not(:disabled) {
    border-color: rgba(255,122,0,0.18);
    background: rgba(255,122,0,0.04);
}

.profile-item input:not(:disabled):focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}

/* SELECT */
.profile-item select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.profile-item select:not(:disabled) {
    border-color: rgba(255,122,0,0.18);
    background:
        linear-gradient(rgba(255,122,0,0.04), rgba(255,122,0,0.04)),
        rgba(255,255,255,0.03);

    cursor: pointer;
    padding-right: 44px;
}

.profile-item select:not(:disabled):focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}

/* DROPDOWN OPTIONS */
.profile-item select option {
    background: #18110c;
    color: white;
}

/* CUSTOM ARROW */
.profile-item:has(select:not(:disabled))::after {
    content: "⌄";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-8px);

    color: #ff7a00;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;

    pointer-events: none;
}

/* PROFILE ACTIONS */
.profile-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;

    margin-top: 24px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.06);
}

.profile-action-btn {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-edit-btn {
    background: rgba(255,122,0,0.10);
    color: #ff9a2f;
    border-color: rgba(255,122,0,0.18);
}

.profile-edit-btn:hover {
    background: rgba(255,122,0,0.18);
}

.profile-save-btn {
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    border: none;
    box-shadow: 0 10px 24px rgba(255,122,0,0.25);
}

.profile-save-btn:hover {
    transform: translateY(-1px);
}

.profile-cancel-btn {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.72);
}

.profile-cancel-btn:hover {
    background: rgba(255,255,255,0.08);
}

.profile-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.profile-edit-actions {
    display: flex;
    gap: 12px;
}

.profile-password-btn {
    background: rgba(255,255,255,0.04);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
}

.profile-password-btn:hover {
    background: rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.18);
    color: #ff9a2f;
    transform: translateY(-1px);
}

.password-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;
}

.password-modal.open {
    display: flex;
}

.password-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(8px);
}

.password-modal-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 560px;

    background: rgba(18,12,8,0.96);
    border: 1px solid rgba(255,122,0,0.14);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.password-modal-card h2 {
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

.password-modal-close {
    position: absolute;
    right: 18px;
    top: 14px;

    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {


    .modal-container {
        align-items: flex-start;
        overflow-y: auto;
        padding: 12px;
    }

    .modal-box.profile-modal {
        display: flex;
        flex-direction: column;
        max-height: 90vh;
    }

    .modal-body {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 10px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .profile-actions {
        flex-direction: column;
        align-items: stretch;

        margin-top: 12px;
        padding-top: 12px;
    }

    .profile-edit-actions {
        order: 1;
    }

    #passwordModalBtn {
        order: 2;
    }

    #closeProfileBtn {
        order: 3;
        position: sticky;
        bottom: 0;

        width: 100%;

        background: #18110c;
        z-index: 10;
    }

    .profile-action-btn {
        width: 100%;
    }

    .btn-close {
        position: absolute;

        right: 38px; /* eddig 32 */

        top: 50%;
        transform: translateY(-50%);

        width: 40px;
        height: 40px;

        color: #ff7a00;
        font-size: 30px;
    }

    .profile-cancel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}



/* User badge in header */
.user-badge {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .user-badge {
        display: flex;
    }
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--orange);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
}

.user-email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-wrapper {
    position: relative;
}

.field-error-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    z-index: 999;

    padding: 12px 14px;
    border-radius: 14px;

    background: rgba(40, 10, 10, 0.97);
    border: 1px solid rgba(255, 80, 80, 0.28);

    color: #ffd5d5;
    font-size: 13px;
    line-height: 1.5;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,80,80,0.08);

    backdrop-filter: blur(10px);

    animation: fadeInUp 0.18s ease;
}

.field-error-tooltip.show {
    display: block;
}

.input-error {
    border-color: #ff5a5a !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.12);
}

.btn-logout {
    display: flex;
    height: 40px;
    padding: 0 1.25rem;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* --- SMOOTH SCROLL --- */
html {
    scroll-behavior: smooth;
}

/* --- SELECTION --- */
::selection {
    background: var(--orange);
    color: #000;
}

/* --- ANTIALIASED --- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.error-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.error-container {
    width: 100%;
    max-width: 920px;
    position: relative;
    z-index: 2;
}

.error-card {
    background: rgba(12, 8, 6, 0.88);
    border: 1px solid rgba(255, 122, 0, 0.12);
    border-radius: 28px;
    padding: 70px 60px;
    text-align: center;
    backdrop-filter: blur(18px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,122,0,0.04);
}

.error-code {
    font-family: 'Anton', sans-serif;
    font-size: 110px;
    line-height: 1;
    color: white;
    margin-bottom: 20px;

    display: inline-block;
    transform-origin: center center;
    animation: spin404 6s ease-in-out infinite;
}

.error-code span {
    color: #ff7a00;
    text-shadow: 0 0 18px rgba(255, 122, 0, 0.35);
}

.password-flash-error {
    background: rgba(255, 70, 70, 0.12);
    border: 1px solid rgba(255, 70, 70, 0.22);
    color: #ff8f8f;

    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;

    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.password-flash-success {
    background: rgba(80, 200, 120, 0.12);
    border: 1px solid rgba(80, 200, 120, 0.22);
    color: #8df0aa;

    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;

    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

@keyframes spin404 {
    0% {
        transform: rotate(0deg) translateY(0px);
    }

    20% {
        transform: rotate(12deg) translateY(-6px);
    }

    40% {
        transform: rotate(0deg) translateY(0px);
    }

    60% {
        transform: rotate(-12deg) translateY(-6px);
    }

    80% {
        transform: rotate(0deg) translateY(0px);
    }

    100% {
        transform: rotate(360deg) translateY(0px);
    }
}

.error-card h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
}

.error-lead {
    font-size: 22px;
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 24px;
}

.error-text {
    max-width: 720px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    box-shadow: 0 10px 25px rgba(255,122,0,0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
}

.btn-secondary:hover {
    border-color: rgba(255,122,0,0.25);
    background: rgba(255,122,0,0.06);
}

@media (max-width: 768px) {
    .error-page {
        padding: 100px 16px 40px;
    }

    .error-container {
        width: 100%;
        max-width: 100%;
    }

    .error-card {
        padding: 42px 22px;
        text-align: center;
    }

    .error-code {
        font-size: 78px;
        margin-left: auto;
        margin-right: auto;
    }

    .error-card h1 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .error-lead {
        font-size: 18px;
        text-align: center;
    }

    .error-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 32px;
    }

    .error-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
        padding: 16px 20px;
    }
}


@media (max-width: 768px) {
    .dash-empty {
        overflow: visible;
        padding: 24px 12px;
    }
    
    .profile-grid {
        padding: 18px;
    }
    .profile-panel {
        overflow: hidden;
    }

    .profile-panel.open {
        max-height: 3500px;
        overflow: visible;
    }
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    padding-right: 56px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);

    background: transparent;
    border: none;

    color: rgba(255,255,255,0.6);
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #ff7a00;
}

.session-timeout-text {
    margin-top: 28px;
    padding: 22px 26px;

    border-radius: 18px;

    background: rgba(120, 12, 12, 0.28);
    border: 1px solid rgba(255, 80, 80, 0.22);

    color: #ff8b8b;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;

    text-align: center;

    box-shadow:
        0 0 24px rgba(255, 60, 60, 0.08),
        inset 0 0 20px rgba(255, 40, 40, 0.04);
}

.session-timeout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-top: 42px;
}
#sessionHomeBtn {
    margin-right: auto;
}

#sessionLoginBtn {
    margin-left: auto;
}

.session-timeout-actions .profile-action-btn {
    flex: 1;
}

@media (max-width:768px){

    .session-timeout-actions{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:16px;

    }

    .session-timeout-actions .profile-action-btn{

        width:100%;

        max-width:280px;

        margin:0 !important;

        display:flex;

        justify-content:center;

        align-items:center;

    }

}

.challenge-panel {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.challenge-panel.open {
    display: block;
}


.challenge-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(300px, 1fr));

    gap: 24px;
}

@media (max-width: 1200px) {
    .challenge-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .challenge-grid {
        grid-template-columns:
            1fr;
    }
}

.challenge-card {
    width: 280px;
    min-height: 320px;

    padding: 20px;

    border: 1px solid rgba(255,122,0,.4);
    border-radius: 16px;

    background: rgba(255,255,255,.02);

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: all 0.2s ease;
}

.challenge-card:hover {
    border-color: #ff7a00;

    transform: translateY(-2px);
}

.challenge-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.challenge-card p {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.85);
}

.challenge-card form {
    margin-top: 15px;
}

.challenge-card input[type="file"] {
    width: 100%;
    margin-bottom: 15px;
}

.challenge-card strong {
    color: #fff;
}

.challenge-status {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.challenge-status.waiting {
    color: #ff7a00;
}

.challenge-status.completed {
    color: #5cff6b;
}

.panel-actions-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;
}

.file-upload-input {
    display: none;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 10px 18px;

    border-radius: 12px;

    background: rgba(255,122,0,.15);
    border: 1px solid rgba(255,122,0,.5);

    color: #ff7a00;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all .2s ease;
}

.file-upload-label:hover {
    background: rgba(255,122,0,.25);
    border-color: #ff7a00;
}

.file-upload-name {
    font-size: 13px;
    color: rgba(255,255,255,.65);

    max-width: 220px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}




.modal-large {
    width: min(1400px, 95vw);
    height: min(850px, 90vh);
    color: #fff;
    display: flex;
    flex-direction: column;

    background: #0d0d0d;

    border-radius: 28px;

    overflow: hidden;
}

.modal-header {
    position: relative;

    padding: 40px;

    flex-shrink: 0;

    border-bottom: 1px solid rgba(255,255,255,.08);

    justify-content: center;
}

.modal-header h3 {
    text-align: center;

    width: 100%;

    font-size: 42px;
    font-weight: 900;

    margin: 0;
}
.modal-body {
    max-height: calc(85vh - 90px);

    overflow-y: auto;
    overflow-x: hidden;

    padding: 32px;
}

body.modal-open {
    overflow: hidden;
}

.modal-footer {
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 24px;

    border-top:
        1px solid rgba(255,255,255,.08);
}

.challenge-modal {

    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;

}

.challenge-modal.open {

    display: flex;

}

.challenge-modal-card {

    width: min(1200px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 24px;
    padding: 48px 56px;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 122, 0, 0.04);
}

.challenge-modal-card::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.challenge-modal-card::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.challenge-modal-header {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;

}

.challenge-modal-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin: 8px 0 0 0;
    color: #fff;
}


.challenge-option-card {

    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    border: none;
    border-radius: 0;
    padding: 24px 28px;
    margin: 0;
    text-align: left;
    position: relative;
    transition: background 0.25s ease;
    cursor: pointer;
    color: #fff;
    overflow:visible;

}

.challenge-option-card:hover {
    background: #121212;
}

.challenge-option-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.challenge-option-card:hover::before {
    transform: scaleY(1);
}

.challenge-option-card h3,
.challenge-option-card h4 {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

 .limited-badge{

    position:absolute;
    top:16px;
    right:16px;

    background:#ff8800;
    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    cursor:pointer;

}

.limited-tooltip{

    position:absolute;

    top:calc(100% + 10px);
    right:50%;

    transform:translateX(50%) translateY(10px);

    min-width:260px;

    background:#181818;
    border:1px solid rgba(255,136,0,.35);
    border-radius:12px;

    padding:12px 16px;

    text-align:center;

    opacity:0;
    visibility:hidden;

    transition:.2s;

    z-index:100;

    box-shadow:0 10px 30px rgba(0,0,0,.5);

}

.limited-badge:hover .limited-tooltip{

    opacity:1;
    visibility:visible;
    transform:translateX(50%) translateY(0);

}

.limited-tooltip-title{

    color:#ff8800;
    font-weight:700;
    margin-bottom:6px;

}

.limited-tooltip-date{

    white-space:nowrap;
    color:#fff;
    font-size:14px;
    font-weight:600;

}

.challenge-category-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, auto);
    gap: 10px 24px;

    max-height: 320px;
    overflow-y: scroll;

    padding: 12px;
    padding-right: 10px;
}

.challenge-category-grid::-webkit-scrollbar {
    width: 10px;
}

.challenge-category-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,.08);
    border-radius: 20px;
}

.challenge-category-grid::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 20px;
}

.challenge-category-grid .challenge-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.challenge-category-intro {

    max-width: 850px;
    margin: 0 auto 40px auto;
    text-align: center;
    padding: 32px 36px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 107, 0, 0.04));
    position: relative;
    z-index: 1;
    overflow: hidden;

}



.challenge-option-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 4px 0;
}

.challenge-option-card .km,
.challenge-option-card .price,
.challenge-option-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
    width: fit-content;
}

.challenge-category-intro::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 50%);
    pointer-events: none;
}

.challenge-category-intro h3 {

    color: #ff7a00;
    margin-bottom: 16px;
    position: relative;
    font-weight: 800;
    font-size: 22px;

}

.challenge-category-intro p {

    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    margin: 0;
    font-size: 15px;

}

.challenge-list {

    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;

}

.challenge-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.challenge-modal-close {

    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.08);
    color: #ff7a00;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;

}

.challenge-modal-close:hover {

    background: #ff8800;

    color: #000;

}

@media (max-width: 768px) {

    .challenge-modal-card {
        width: 95vw;
        max-height: 85vh;
        overflow-y: auto;

        padding: 20px 16px;
        border-radius: 16px;
    }

    .challenge-modal-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .challenge-modal-header h2 {
        font-size: 26px;
        line-height: 1;
    }

    .challenge-category-intro {
        padding: 16px;
        margin-bottom: 18px;
    }

    .challenge-category-intro h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .challenge-category-intro p {
        font-size: 14px;
        line-height: 1.5;
    }
}



@media (min-width: 768px) {
    .challenge-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cart-page {
    min-height: 100vh;
    padding-top: 72px;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Háttér dekoráció – narancs glow a sarkokban */
.cart-page::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cart-page::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cart-page > .section-inner {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 6rem;
}


/* --- Kosár oldal fejléc --- */
.cart-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cart-header-left .section-label {
    color: var(--orange);
}

.cart-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.cart-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.cart-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.05);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--orange);
}

.cart-count-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange);
    animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


/* --- Két oszlopos layout: tételek + összegző panel --- */
.cart-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr 380px;
        gap: 3rem;
    }
}


/* --- Kosár tételek listája --- */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem;
    background: #0a0a0a;
    transition: background 0.25s ease;
    position: relative;
}

.cart-item-card:hover {
    background: #121212;
}

/* Bal oldali narancs csík hoverre */
.cart-item-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.cart-item-card:hover::before {
    transform: scaleY(1);
}


/* Sorszám blokk (01, 02, 03...) */
.cart-item-number {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 107, 0, 0.5);
    min-width: 60px;
    text-align: center;
    transition: all 0.25s ease;
}

.cart-item-card:hover .cart-item-number {
    -webkit-text-stroke: 1.5px var(--orange);
    transform: scale(1.05);
}


/* Tétel info blokk */
.cart-item-info {
    min-width: 0;
}

.cart-item-category {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.375rem;
}

.cart-item-card h3 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.cart-item-km {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.cart-item-km::before {
    content: "";
    width: 12px;
    height: 2px;
    background: var(--orange);
}

.cart-item-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}


/* Jobb oldal: ár + törlés gomb */
.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    min-width: 110px;
}

.cart-item-price {
    color: #fff;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.cart-item-price .currency {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

.cart-item-medal{
    margin-top:8px;
    font-size:14px;
    color:#ff6b00;
    font-weight:600;
}

.cart-item-medal strong{
    color:#fff;
    margin-right:6px;
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cart-remove-btn:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
    background: rgba(255, 59, 59, 0.05);
}

.cart-remove-btn svg {
    transition: transform 0.2s ease;
}

.cart-remove-btn:hover svg {
    transform: rotate(90deg);
}


/* --- Összegző panel (sticky a jobb oldalon) --- */
.cart-summary {
    position: sticky;
    top: 100px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 2rem;
}

@media (max-width: 1023px) {
    .cart-summary {
        position: static;
    }
}

.cart-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.cart-summary-items-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
}

.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.cart-summary-row .value {
    color: #fff;
    font-weight: 600;
}

.cart-summary-row.discount .value {
    color: #5cff6b;
}


/* Végösszeg doboz – kiemelt narancs glow */
.cart-total-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 107, 0, 0.04));
    border: 1px solid rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cart-total-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 50%);
    pointer-events: none;
}

.cart-total-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.cart-total-value {
    color: var(--orange);
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.cart-total-value .currency {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}


/* FIZETÉS gomb */
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 56px;
    margin-top: 1.5rem;
    padding: 0 2rem;
    background: var(--orange);
    color: #000;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Fény "söprés" effekt hoverre */
.cart-checkout-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cart-checkout-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.35);
}

.cart-checkout-btn:hover::before {
    transform: translateX(100%);
}

.cart-checkout-btn svg {
    transition: transform 0.2s ease;
}

.cart-checkout-btn:hover svg {
    transform: translateX(4px);
}

.cart-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

.cart-secure-note svg {
    color: #5cff6b;
}


/* --- Üres kosár állapot --- */
.cart-empty {
    text-align: center;
    padding: 5rem 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.cart-empty-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    position: relative;
}

.cart-empty-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 50%;
}

.cart-empty-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.cart-empty-desc {
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cart-empty-actions {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


/* --- MOBIL responsive --- */
@media (max-width: 640px) {
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .cart-item-number {
        font-size: 2rem;
        text-align: left;
        min-width: auto;
    }

    .cart-item-right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        min-width: 0;
        width: 100%;
    }

    .cart-summary {
        padding: 1.5rem;
    }

    .cart-total-value {
        font-size: 2rem;
    }

    .cart-empty {
        padding: 3rem 1.25rem;
    }

    .cart-empty-title {
        font-size: 2rem;
    }
}

.orders-list {

    display: flex;
    flex-direction: column;

    gap: 24px;

}

.order-card {

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,122,0,.15);

    border-radius: 20px;

    padding: 24px;

    transition: all .2s ease;

}

.order-card:hover {

    border-color: rgba(255,122,0,.45);

    transform: translateY(-2px);

}

.order-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 22px;

}

.order-id {

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: .04em;

}

.order-date {

    margin-top: 6px;

    color: rgba(255,255,255,.55);

    font-size: 13px;

}

.order-status {

    padding: 10px 16px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    white-space: nowrap;

}

.status-paid {

    background: rgba(92,255,107,.12);

    color: #5cff6b;

}

.status-pending {

    background: rgba(255,122,0,.12);

    color: #ff7a00;

}

.status-failed,
.status-cancelled {

    background: rgba(255,80,80,.12);

    color: #ff8080;

}

.status-refunded {

    background: rgba(120,180,255,.12);

    color: #7ab4ff;

}

.order-items {

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 16px;

    padding: 18px;

}

.order-items-title {

    color: #ff7a00;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;

    margin-bottom: 14px;

}

.order-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 16px;

    padding: 12px 0;

}

.order-item:not(:last-child) {

    border-bottom: 1px solid rgba(255,255,255,.06);

}

.order-item-name {

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

}

.order-item-meta {

    display: flex;

    align-items: center;

    gap: 16px;

    color: rgba(255,255,255,.70);

    font-size: 14px;

}

.order-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 20px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.8);

    font-size: 16px;

}

.order-total strong {

    color: #ff7a00;

    font-size: 24px;

    font-weight: 800;

}

.upload-help {
    display: block;
    margin: 12px 0 18px 0;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;

    color: rgba(255,255,255,.55);
    text-align: center;
}

.admin-proof-card{

    background:#0b0b0b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:24px;

    margin-bottom:22px;

}

.admin-proof-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:22px;

}

.admin-proof-date{

    font-size:14px;

    color:#8d8d8d;

    margin-bottom:4px;

}

.admin-proof-id{

    font-size:18px;

    font-weight:700;

    color:#fff;

}

.admin-proof-status{

    background:rgba(255,122,0,.12);

    border:1px solid rgba(255,122,0,.3);

    color:#ff7a00;

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

}

.admin-proof-body{

    background:#141414;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:18px 20px;

}

.admin-proof-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.admin-proof-row:last-child{

    border-bottom:none;

}

.admin-proof-label{

    color:#9b9b9b;

    font-size:14px;

}

.admin-proof-value{

    color:#fff;

    font-weight:600;

    text-align:right;

}

.admin-proof-footer{

    margin-top:22px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.08);

}

.admin-proof-buttons{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.admin-proof-buttons>*{

    flex:1;

    min-width:170px;

}

@media (max-width: 768px) {

    .order-header {

        flex-direction: column;

        align-items: flex-start;

    }

    .order-item {

        flex-direction: column;

        align-items: flex-start;

    }

    .order-item-meta {

        width: 100%;

        justify-content: space-between;

    }

    .order-total {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }

}

/* ===================================================
   SIKERES FIZETÉS PAGE
   =================================================== */

.success-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.success-container{

        width:100%;
        max-width:100%;

        position:relative;

        left:-8px;
    }

.success-card {
    background: rgba(18, 12, 8, 0.92);
    border: 1px solid rgba(255, 122, 0, 0.15);
    border-radius: 28px;

    padding: 70px 60px;

    text-align: center;

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,122,0,.05);
}

.success-icon {

    width: 120px;
    height: 120px;

    margin: 0 auto 35px;

    border-radius: 50%;

    background: linear-gradient(135deg,#ff7a00,#ff9d00);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 56px;

    font-weight: 900;

    box-shadow:
        0 0 40px rgba(255,122,0,.35);

    animation: successPop .8s ease;
}

.success-title {

    font-family: 'Anton', sans-serif;

    font-size: clamp(52px,8vw,90px);

    line-height: .95;

    letter-spacing: .02em;

    margin-bottom: 20px;
}

.success-title span {

    color: transparent;

    -webkit-text-stroke:2px white;
}

.success-subtitle {

    font-size: 24px;

    font-weight: 800;

    color: white;

    margin-bottom: 30px;
}

.success-text {

    max-width: 620px;

    margin: auto;

    color: rgba(255,255,255,.65);

    font-size: 17px;

    line-height: 1.8;
}

.success-info {

    margin-top: 45px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 1px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.08);
}

.success-item {

    background: #0b0b0b;

    padding: 28px 20px;

    transition: .25s;
}

.success-item:hover {

    background: #141414;
}

.success-number {

    font-size: 34px;

    font-weight: 900;

    color: #ff7a00;
}

.success-label {

    margin-top: 8px;

    font-size: 12px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.45);
}

.success-buttons {

    margin-top: 50px;

    display: flex;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;
}

.success-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(255,122,0,.15);

    filter: blur(120px);

    pointer-events: none;
}

@keyframes successPop {

    0% {

        transform: scale(.4);

        opacity:0;
    }

    60% {

        transform: scale(1.1);
    }

    100% {

        transform: scale(1);

        opacity:1;
    }
}


@media (max-width: 768px) {

    .success-page{

        min-height:100svh;

        padding:20px 12px;

        display:flex;
        align-items:center;
        justify-content:center;

        overflow-x:hidden;
        box-sizing:border-box;
    }

    .success-container{

        width:100%;
        max-width:100%;

        box-sizing:border-box;
    }


    .success-card{

        width:calc(100vw - 24px);

        max-width:420px;

        margin:0 auto;

        box-sizing:border-box;

        padding:28px 18px;
    }

    .hero-badge{

        margin-bottom:16px;
    }

    .success-icon{

        width:72px;
        height:72px;

        font-size:38px;

        margin:0 auto 18px;
    }

    .success-title{

        font-size:46px;

        line-height:.88;

        margin-bottom:10px;
    }

    .success-subtitle{

        font-size:18px;

        margin-bottom:18px;
    }

    .success-text{

        font-size:15px;

        line-height:1.7;

        margin-bottom:28px;
    }

    .success-info{

        display:grid;

        grid-template-columns:1fr;

        gap:1px;

        margin-top:0;
    }

    .success-item{

        padding:18px;
    }

    .success-number{

        font-size:28px;
    }

    .success-label{

        font-size:11px;

        letter-spacing:.15em;
    }

    .success-buttons{

        display:flex;

        flex-direction:column;

        gap:12px;

        margin-top:28px;
    }

    .success-buttons .btn-primary,
    .success-buttons .btn-secondary{

        width:100%;

        justify-content:center;

        height:54px;

        padding:0;
    }

}

.section-about{

    background:#fff;
    color:#111;

}

.about-header{

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:80px;
    align-items:end;

    margin-bottom:90px;

}

.about-title{

    font-size:72px;
    line-height:.95;

}

.about-outline{

    color:transparent;
    -webkit-text-stroke:2px #111;

}

.about-intro{

    font-size:28px;
    font-weight:700;
    line-height:1.5;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:40px;

    margin-bottom:80px;

}

.about-block{

    padding-top:40px;

    border-top:1px solid rgba(0,0,0,.1);

}

.about-block h3{

    color:#ff6b00;

    font-size:13px;

    letter-spacing:.2em;

    margin-bottom:24px;

}

.about-block p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

.about-highlight{

    background:#111;

    color:white;

    padding:60px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    border-left:6px solid #ff6b00;

}

.about-highlight span{

    letter-spacing:.2em;

    font-size:12px;

    color:#ff6b00;

    margin-bottom:18px;

}

.about-highlight h2{

    font-size:56px;

    line-height:1;

    margin:6px 0;

}

.about-bottom{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.about-line{

    width:80px;

    height:4px;

    background:#ff6b00;

    margin:0 auto 40px;

}

.about-bottom p{

    font-size:22px;

    line-height:2;

    color:#666;

    margin-bottom:40px;

}

.about-bottom h2{

    font-size:64px;

    line-height:1.05;

}

@media(max-width:1024px){

    .about-header,
    .about-grid{

        grid-template-columns:1fr;

    }

    .about-title{

        font-size:52px;

    }

    .about-highlight{

        padding:40px;

    }

    .about-highlight h2{

        font-size:42px;

    }

    .about-bottom h2{

        font-size:42px;

    }

}



.legal-hero{

    position:relative;

    overflow:hidden;

    padding:90px 0 45px;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.legal-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at 85% 15%,
        rgba(255,107,0,.10),
        transparent 35%
    );

    pointer-events:none;
}

.legal-hero::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    right:-220px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.04);
}

.legal-hero .section-inner{

    position:relative;

    z-index:2;
}

.legal-hero .section-label{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    margin-bottom:40px;

    border-radius:999px;

    background:rgba(255,107,0,.08);

    border:1px solid rgba(255,107,0,.22);

    color:#ff6b00;

    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;
}

.legal-title{

    margin:0;

    font-size:clamp(60px,8vw,130px);

    line-height:1.02;

    letter-spacing:-.04em;
}

.legal-title span{

    display:block;

    margin-top:14px;

    color:transparent;

    -webkit-text-stroke:2px #fff;
}

.legal-date{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    margin-top:18px;

    border-radius:999px;

    background:rgba(255,107,0,.08);

    border:1px solid rgba(255,107,0,.22);

    color:#ff6b00;

    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;
}

/* ========================================================== */

.legal-content{

    padding:10px 0 120px;
}

.legal-wrapper{

    max-width:1040px;
}

/* ========================================================== */

.legal-block{

    position:relative;

    margin-bottom:26px;

    padding:42px;

    background:#111;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 8px 25px rgba(0,0,0,.25);

    transition:

        transform .25s,

        background .25s,

        border-color .25s,

        box-shadow .25s;
}

.legal-block:hover{

    transform:translateY(-3px);

    background:#171717;

    border-color:rgba(255,107,0,.35);

    box-shadow:

        0 20px 50px rgba(0,0,0,.45),

        0 0 35px rgba(255,107,0,.06);
}

.legal-block::before{

    content:"";

    position:absolute;

    left:0;
    top:0;
    bottom:0;

    width:4px;

    border-radius:20px 0 0 20px;

    background:#ff6b00;

    opacity:.15;

    transition:.25s;
}

.legal-block:hover::before{

    opacity:1;
}

/* ========================================================== */

.legal-block h2{

    display:flex;

    align-items:center;

    gap:16px;

    margin:0 0 24px;

    color:#fff;

    font-size:30px;

    font-weight:900;

    line-height:1.2;
}

.legal-block h2::after{

    content:"";

    flex:1;

    height:1px;

    background:rgba(255,255,255,.08);
}

/* ========================================================== */

.legal-block p{

    margin:0 0 18px;

    color:rgba(255,255,255,.74);

    font-size:16px;

    line-height:1.9;
}

.legal-block p:last-child{

    margin-bottom:0;
}

.legal-block strong{

    color:#fff;

    font-weight:700;
}

/* ========================================================== */

.legal-block ul,
.legal-block ol{

    list-style:none;

    padding:0;

    margin:25px 0;
}

.legal-block li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    color:rgba(255,255,255,.74);

    line-height:1.8;
}

.legal-block ul li::before{

    content:"";

    position:absolute;

    left:0;
    top:11px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#ff6b00;
}

.legal-block ol{

    counter-reset:legalcounter;
}

.legal-block ol li{

    counter-increment:legalcounter;
}

.legal-block ol li::before{

    content:counter(legalcounter);

    position:absolute;

    left:0;
    top:0;

    color:#ff6b00;

    font-weight:800;
}

/* ========================================================== */

.legal-highlight{

    margin-top:25px;

    padding:28px 32px;

    border-radius:18px;

    background:

    linear-gradient(

        135deg,

        rgba(255,107,0,.10),

        rgba(255,107,0,.03)

    );

    border:1px solid rgba(255,107,0,.18);
}

.legal-highlight p{

    margin-bottom:12px;
}

.legal-highlight p:last-child{

    margin-bottom:0;
}

.legal-highlight strong{

    color:#ff6b00;
}

/* ========================================================== */

.legal-block a{

    color:#ff6b00;

    text-decoration:none;

    transition:.2s;
}

.legal-block a:hover{

    color:#fff;
}

/* ========================================================== */

@media(max-width:768px){

    .legal-hero{

        padding:110px 0 35px;
    }

    .legal-hero .section-label{

        margin-bottom:14px;

        font-size:11px;
    }

    .legal-title{

        font-size:52px;
    }

    .legal-date{

        margin-top:12px;

        font-size:12px;
    }

    .legal-content{

        padding:5px 0 70px;
    }

    .legal-block{

        padding:28px;

        margin-bottom:18px;

        border-radius:18px;
    }

    .legal-block h2{

        font-size:24px;

        margin-bottom:18px;
    }

    .legal-block p{

        font-size:15px;

        line-height:1.8;
    }

    .legal-highlight{

        padding:22px;
    }

}


.stripe-redirect-modal {

    position: fixed;
    inset: 0;

    display: none;

    z-index: 9999;

}

.stripe-redirect-modal.open {

    display: flex;

    align-items: center;
    justify-content: center;

}

.stripe-redirect-backdrop {

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.82);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

.stripe-redirect-card {

    position: relative;
    z-index: 2;

    width: 92%;
    max-width: 520px;

    background: #090909;

    border: 1px solid rgba(255,255,255,.08);

    padding: 42px;

    text-align: center;

    animation: stripeRedirectAppear .25s ease;

}

.stripe-redirect-card h2 {

    margin: 24px 0 16px;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: .04em;

    color: #fff;

}

.stripe-redirect-card p {

    color: rgba(255,255,255,.72);

    font-size: 15px;

    line-height: 1.7;

}

.stripe-redirect-card strong {

    color: #FF6B00;

    font-weight: 700;

}

.stripe-redirect-loader {

    width: 62px;
    height: 62px;

    margin: auto;

    border-radius: 50%;

    border: 4px solid rgba(255,255,255,.08);

    border-top: 4px solid #FF6B00;

    animation: stripeRedirectSpin .8s linear infinite;

}

@keyframes stripeRedirectSpin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

@keyframes stripeRedirectAppear {

    from {

        opacity: 0;

        transform: translateY(20px) scale(.96);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}

.cart-checkout-btn.loading {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: none;
    transition: opacity .2s ease;
}

.inactive-email-notice {

    margin-bottom: 24px;
    padding: 16px 18px;

    background: rgba(255, 122, 0, 0.10);
    border: 1px solid rgba(255, 122, 0, 0.25);

    border-radius: 14px;

    text-align: center;
}

.inactive-email-text {

    color: #ffcc9a;
    font-size: 14px;
    font-weight: 600;
}

.inactive-email-form {

    display: inline;
}

.inactive-email-button {

    background: transparent;
    border: none;
    padding: 0;
    margin-left: 6px;

    color: #ffffff;

    font: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: color .2s ease;
}

.inactive-email-button:hover {

    color: #ff7a00;
}


.challengeEditOverlay{

    position:fixed;
    inset:0;

    display:none;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.82);
    backdrop-filter:blur(10px);

    z-index:99999;

}

.challengeEditOverlay.open{

    display:flex;

}

.challengeEditWindow{

    width:min(1200px,95vw);

    max-height:92vh;

    background:rgba(18,12,8,.97);

    border:1px solid rgba(255,122,0,.14);

    border-radius:28px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.6),
        0 0 0 1px rgba(255,122,0,.04);

    display:flex;

    flex-direction:column;

    overflow:hidden;

}

.challengeEditHeader{

    padding:30px 34px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.challengeEditHeader h3{

    margin:0;

    color:white;

    font-size:32px;

    font-weight:900;

}

.challengeEditClose{

    width:48px;
    height:48px;

    border:none;

    border-radius:12px;

    background:rgba(255,122,0,.08);

    color:#ff7a00;

    font-size:28px;

    cursor:pointer;

    transition:.2s;

}

.challengeEditClose:hover{

    background:#ff7a00;

    color:black;

}

.challengeEditForm{

    display:flex;

    flex-direction:column;

    flex:1;

    min-height:0;

}

.challengeEditContent{

    flex:1;

    overflow:auto;

    padding:28px;

}

.challengeEditGrid{

    display:grid;

    grid-template-columns:minmax(0,1fr) minmax(0,1fr);

    gap:24px 40px;

}

.challengeEditField{

    position:relative;

    display:flex;

    flex-direction:column;

    min-width:0;

}

.challengeEditField:has(select)::after{

    content:"⌄";

    position:absolute;

    right:18px;

    top:46px;

    transform:translateY(-50%);

    color:#ff7a00;

    font-size:20px;

    pointer-events:none;

}

.challengeEditField label{

    display:block;

    margin-bottom:10px;

    color:rgba(255,255,255,.55);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.06em;

}

.challengeEditField input,
.challengeEditField select{

    width:100%;

    max-width:100%;

    box-sizing:border-box;

    height:52px;

    padding:0 16px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    color:#ffffff;

    font-size:15px;

    font-family:inherit;

}

.challengeEditField select{

    padding-right:45px;

}

.challengeEditField select:focus{

    outline:none;

    border-color:#ff7a00;

    box-shadow:0 0 0 3px rgba(255,122,0,.12);

}

.challengeEditField select option{

    background:#18110c;

    color:#ffffff;

}

.challengeEditTwoColumns{

    display:grid;

    grid-template-columns:360px 1fr;

    gap:24px;

}

.challengeEditCategoriesColumn,

.challengeEditDescriptionColumn{

    background:rgba(255,255,255,.03);

    border-radius:20px;

    padding:18px;

}

.challengeEditCategoriesColumn>label,

.challengeEditDescriptionColumn>label{

    display:block;

    margin-bottom:16px;

    color:white;

    font-size:18px;

    font-weight:700;

}

.challengeEditCategories{

    display:flex;

    flex-direction:column;

    gap:10px;

    max-height:380px;

    overflow:auto;

}

.challengeEditCategory{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 12px;

    border-radius:10px;

    transition:.2s;

    color:white;

    cursor:pointer;

}

.challengeEditCategory:hover{

    background:rgba(255,122,0,.08);

}

.challengeEditCategory input{

    width:18px;

    height:18px;

    margin:0;

}

.challengeEditDescriptionColumn textarea{

    width:100%;

    min-height:380px;

    resize:vertical;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:16px;

    color:white;

    box-sizing:border-box;

}

.challengeEditDescriptionColumn textarea:focus{

    outline:none;

    border-color:#ff7a00;

    box-shadow:0 0 0 3px rgba(255,122,0,.15);

}

.challengeEditSales{

    margin-top:26px;

}

.challengeEditFooter{

    display:flex;

    justify-content:flex-end;

    gap:14px;

    padding:24px 30px;

    border-top:1px solid rgba(255,255,255,.05);

    background:rgba(0,0,0,.15);

}

.challengeEditSaveButton{

    padding:14px 26px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#ff7a00,#ff9500);

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}

.challengeEditSaveButton:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 28px rgba(255,122,0,.3);

}

.challengeEditCancelButton{

    padding:14px 26px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.05);

    color:rgba(255,255,255,.8);

    cursor:pointer;

    transition:.2s;

}

.challengeEditCancelButton:hover{

    background:rgba(255,255,255,.09);

}

@media(max-width:900px){

    .challengeEditGrid{

        grid-template-columns:1fr;

    }

    .challengeEditTwoColumns{

        grid-template-columns:1fr;

    }

    .challengeEditDescriptionColumn textarea{

        min-height:220px;

    }

    .challengeEditFooter{

        flex-direction:column;

    }

    .challengeEditFooter button{

        width:100%;

    }

}


.pwreset-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#050505;

    position:relative;

    overflow:hidden;

    padding:40px;

}

.pwreset-bg-blur{

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:#ff6a00;

    filter:blur(240px);

    opacity:.18;

    right:-180px;

    top:-120px;

}

.pwreset-bg-circle-one{

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.04);

    left:-140px;

    bottom:-100px;

}

.pwreset-bg-circle-two{

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    border:1px solid rgba(255,122,0,.10);

    right:10%;

    bottom:8%;

}

.pwreset-container{

    width:100%;

    max-width:680px;

    position:relative;

    z-index:2;

}

.pwreset-card{

    background:rgba(14,14,14,.93);

    border:1px solid rgba(255,122,0,.12);

    border-radius:30px;

    padding:60px;

    backdrop-filter:blur(20px);

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.pwreset-label{

    display:inline-block;

    padding:8px 16px;

    border:1px solid rgba(255,122,0,.2);

    color:#ff7a00;

    font-size:12px;

    letter-spacing:3px;

    font-weight:700;

    margin-bottom:35px;

}

.pwreset-title{

    font-family:"Anton";

    font-size:76px;

    line-height:.9;

    color:white;

    margin:0;

}

.pwreset-title span{

    display:block;

    color:#ff7a00;

}

.pwreset-description{

    margin-top:35px;

    color:rgba(255,255,255,.72);

    line-height:1.9;

}

.pwreset-form{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.pwreset-input{

    height:58px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:white;

    padding:0 20px;

    font-size:16px;

}

.pwreset-input:focus{

    outline:none;

    border-color:#ff7a00;

}

.pwreset-button{

    height:60px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#ff6a00,#ff8a00);

    color:white;

    font-weight:800;

    letter-spacing:1px;

    cursor:pointer;

    transition:.25s;

}

.pwreset-button:hover{

    transform:translateY(-2px);

}

.pwreset-message{

    margin-top:25px;

    background:rgba(255,90,90,.12);

    border:1px solid rgba(255,90,90,.25);

    border-radius:14px;

    padding:16px;

    color:white;

}

.pwreset-back{

    display:block;

    margin-top:35px;

    color:#ff7a00;

    text-decoration:none;

    text-align:center;

    font-weight:600;

}

.pwreset-back:hover{

    opacity:.8;

}



.forgotpw-page{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:60px 20px;

    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #0b0704 45%,
            #1a0b02 100%
        );

}

.forgotpw-background{

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:#ff7300;

    filter:blur(220px);

    opacity:.14;

    right:-180px;

    top:-220px;

    pointer-events:none;

}

.forgotpw-circle-left{

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.04);

    left:-180px;

    bottom:-180px;

}

.forgotpw-circle-right{

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    border:1px solid rgba(255,122,0,.10);

    right:120px;

    bottom:120px;

}

.forgotpw-wrapper{

    width:100%;

    max-width:720px;

    position:relative;

    z-index:5;

}

.forgotpw-card{

    background:

        linear-gradient(

            180deg,

            rgba(30,16,8,.92),

            rgba(12,12,12,.96)

        );

    border:1px solid rgba(255,122,0,.12);

    border-radius:34px;

    padding:70px;

    box-shadow:

        0 25px 80px rgba(0,0,0,.55);

    backdrop-filter:blur(22px);

}

.forgotpw-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,122,0,.08);

    border:1px solid rgba(255,122,0,.20);

    color:#ff7a00;

    font-size:12px;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

}

.forgotpw-tag::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#ff7a00;

}

.forgotpw-title{

    margin-top:35px;

    font-family:"Anton",sans-serif;

    font-size:82px;

    line-height:.92;

    color:white;

    letter-spacing:1px;

}

.forgotpw-title span{

    display:block;

    color:#ff7a00;

}

.forgotpw-description{

    margin-top:35px;

    color:rgba(255,255,255,.72);

    font-size:17px;

    line-height:1.9;

    max-width:560px;

}

.forgotpw-flash{

    margin-top:35px;

    padding:18px 22px;

    border-radius:18px;

    background:

        rgba(255,122,0,.08);

    border:

        1px solid rgba(255,122,0,.18);

    color:white;

    line-height:1.8;

}

.forgotpw-form{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.forgotpw-input{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    font-size:16px;

    padding:0 22px;

    transition:.25s;

}

.forgotpw-input::placeholder{

    color:rgba(255,255,255,.35);

}

.forgotpw-input:focus{

    outline:none;

    border-color:#ff7a00;

    background:rgba(255,255,255,.07);

    box-shadow:

        0 0 0 4px rgba(255,122,0,.12);

}

@media (max-width:768px){

    .forgotpw-form,
    .forgotpw-input,
    .forgotpw-button{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }

}

.forgotpw-button{

    height:64px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    font-size:15px;

    font-weight:800;

    letter-spacing:1.5px;

    color:white;

    background:

        linear-gradient(

            135deg,

            #ff6a00,

            #ff9300

        );

    transition:.25s;

}

.forgotpw-button:hover{

    transform:translateY(-3px);

    box-shadow:

        0 12px 35px rgba(255,122,0,.30);

}

.forgotpw-back{

    display:block;

    margin-top:35px;

    text-align:center;

    color:#ff7a00;

    text-decoration:none;

    font-weight:700;

    transition:.2s;

}

.forgotpw-back:hover{

    opacity:.75;

}

@media(max-width:768px){

    .forgotpw-card{

        padding:40px 28px;

    }

    .forgotpw-title{

        font-size:54px;

    }

    .forgotpw-description{

        font-size:15px;

    }

}

.pwreset-error-box{

    margin:30px 0;

}

.pwreset-error{

    padding:16px 20px;

    border-radius:14px;

    background:rgba(220,38,38,.12);

    border:1px solid rgba(220,38,38,.35);

    color:#ffd6d6;

    font-size:15px;

    font-weight:500;

}

.contact-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:60px 20px;

    position:relative;

    background:#090909;

    overflow:hidden;

}

.contact-bg{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,#ff6b0025 0%,transparent 45%),

    radial-gradient(circle at bottom left,#ff6b0015 0%,transparent 40%);

}

.contact-card{

    position:relative;

    z-index:2;

    width:100%;

    max-width:760px;

    background:rgba(18,18,18,.97);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:60px;

    backdrop-filter:blur(20px);

}

.contact-tag{

    display:inline-block;

    background:#ff6b00;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:24px;

}

.contact-title{

    font-family:"Anton",sans-serif;

    font-size:68px;

    line-height:1;

    margin-bottom:24px;

    letter-spacing:2px;

}

.contact-title span{

    color:#ff6b00;

}

.contact-text{

    color:#cfcfcf;

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    box-sizing:border-box;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);

    border-radius:12px;

    color:#fff;

    padding:18px 18px;

    font-size:15px;
    font-family:'Inter',sans-serif;

    transition:all .2s ease;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:rgba(255,255,255,.35);

}

.contact-form input:hover,
.contact-form textarea:hover{

    border-color:rgba(255,122,0,.35);

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#ff7a00;

    background:rgba(255,255,255,.06);

    box-shadow:0 0 0 3px rgba(255,122,0,.12);

}

.contact-form textarea{

    min-height:190px;

    resize:vertical;

}

.contact-form button{

    width:100%;
    height:58px;

    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#ff7a00,#ff9500);

    color:#fff;

    font-size:15px;
    font-weight:800;
    letter-spacing:.08em;

    cursor:pointer;

    transition:all .25s ease;

    box-shadow:
        0 10px 25px rgba(255,122,0,.20);

}

.contact-form button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 18px 40px rgba(255,122,0,.35);

}

.contact-form button:active{

    transform:translateY(0);

}

.contact-back{

    display:inline-block;

    margin-top:32px;

    color:#ff6b00;

    text-decoration:none;

    font-weight:700;

}

.contact-back:hover{

    opacity:.75;

}

@media(max-width:768px){

    .contact-page{

        padding:30px 15px;

    }

    .contact-card{

        padding:35px 24px;

        border-radius:20px;

    }

    .contact-title{

        font-size:46px;

    }

    .contact-text{

        font-size:15px;

    }

    .contact-button{

        height:56px;

    }

}

.flash-message {

    margin-bottom: 24px;

    padding: 18px 22px;

    border: 1px solid rgba(255,107,0,.4);

    border-radius: 16px;

    background: rgba(255,107,0,.08);

    backdrop-filter: blur(12px);

    animation: fadeIn .25s ease;

}

.flash-message p {

    margin: 0;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    text-align: center;

}

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(-8px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.monthlygift-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999999;

}

.monthlygift-modal.open{

    display:flex;

}

.monthlygift-backdrop{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.78);

    backdrop-filter:blur(8px);

    animation:

        monthlyGiftFade

        .45s ease;

}

@keyframes monthlyGiftFade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.monthlygift-card{

    position:relative;

    width:min(1100px,94vw);

    max-height:90vh;

    background:#111;

    border-radius:26px;

    overflow:hidden;

    display:grid;

    grid-template-columns:58% 42%;

    border:1px solid rgba(255,107,0,.25);

    box-shadow:

        0 50px 120px rgba(0,0,0,.65);

    z-index:2;

    animation:

        monthlyGiftEnter

        1s

        cubic-bezier(.17,.88,.18,1);

}

@keyframes monthlyGiftEnter{

    0%{

        opacity:0;

        transform:

            translateX(900px)

            translateY(-260px)

            rotate(42deg)

            scale(.35);

    }

    45%{

        opacity:1;

        transform:

            translateX(-80px)

            translateY(30px)

            rotate(-7deg)

            scale(1.05);

    }

    70%{

        transform:

            translateX(20px)

            translateY(-10px)

            rotate(2deg)

            scale(.99);

    }

    100%{

        opacity:1;

        transform:

            translateX(0)

            translateY(0)

            rotate(0deg)

            scale(1);

    }

}

.monthlygift-image{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.monthlygift-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.monthlygift-content{

    padding:55px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.monthlygift-content h2{

    font-size:72px;

    line-height:.92;

    margin:

        12px

        0

        24px;

}

.monthlygift-content p{

    color:

        rgba(255,255,255,.8);

    line-height:1.8;

    font-size:19px;

}

.monthlygift-features{

    margin-top:28px;

    padding:18px 22px;

    border-radius:14px;

    background:

        rgba(255,107,0,.08);

    border:

        1px solid

        rgba(255,107,0,.25);

    line-height:2;

    font-size:18px;

}

.monthlygift-close{

    position:absolute;

    top:16px;

    right:16px;

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:

        rgba(255,255,255,.08);

    color:white;

    font-size:30px;

    cursor:pointer;

    transition:.25s;

    z-index:30;

}

.monthlygift-close:hover{

    background:#ff6b00;

    color:black;

    transform:rotate(90deg);

}

#closeMonthlyGiftBottom{

    margin-top:34px;

}



@media(max-width:900px){

    .monthlygift-card{

        width:94vw;

        grid-template-columns:1fr;

        max-height:92vh;

        overflow:auto;

    }

    .monthlygift-content{

        padding:30px;

    }

    .monthlygift-content h2{

        font-size:44px;

    }

    .monthlygift-content p{

        font-size:16px;

    }

    .monthlygift-features{

        font-size:16px;

    }

}

/* ===== WHY SECTION ===== */

.why-block{

    background:#000;

    border-top:1px solid rgba(255,255,255,.1);

}

.why-inner{

    max-width:1400px;

    margin:0 auto;

    padding:6rem 1.5rem;

}

@media(min-width:1024px){

    .why-inner{

        padding:6rem 2rem;

    }

}

.why-heading{

    font-size:48px;

    line-height:1;

    margin-bottom:5rem;

}

@media(min-width:1024px){

    .why-heading{

        font-size:64px;

    }

}

.why-list{

    display:grid;

    gap:3rem;

}

@media(min-width:1024px){

    .why-list{

        grid-template-columns:repeat(5,1fr);

        gap:0;

    }

}

.why-item{

    position:relative;

    padding-left:3rem;

    border-left:1px solid rgba(255,255,255,.1);

}

@media(min-width:1024px){

    .why-item{

        border-left:none;

        border-top:1px solid rgba(255,255,255,.1);

        padding-top:3rem;

        padding-left:0;

    }

    .why-item:nth-child(1){

        padding-right:2rem;

    }

    .why-item:nth-child(2){

        padding:3rem 2rem 0;

    }

    .why-item:nth-child(3){

        padding:3rem 2rem 0;

    }

    .why-item:nth-child(4){

        padding:3rem 2rem 0;

    }

    .why-item:nth-child(5){

        padding-left:2rem;

        padding-top:3rem;

    }

}

.why-index{

    position:absolute;

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ff6b00;

    color:#000;

    font-weight:900;

    font-size:.8rem;

}

.why-item .why-index{

    left:-14px;

}

@media(min-width:1024px){

    .why-item .why-index{

        left:0;

        top:-14px;

    }

}

.why-title{

    font-size:1.4rem;

    font-weight:700;

    margin-bottom:.75rem;

    color:#fff;

}

.why-text{

    color:rgba(255,255,255,.6);

    line-height:1.7;

    font-size:.95rem;

}

.why-item:hover .why-title{

    color:#ff6b00;

    transition:.2s;

}

.why-item:hover .why-index{

    transform:scale(1.08);

    transition:.2s;

}

.customer-toolbar{

    display:grid;

    grid-template-columns:2fr 1fr 1fr auto auto;

    gap:12px;

    margin-bottom:25px;

}

.customer-search,
.customer-filter{

    width:95%;

    padding:14px 16px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    outline:none;

    font-size:14px;

}

.customer-search::placeholder{

    color:rgba(255,255,255,.45);

}

.customer-search:focus,
.customer-filter:focus{

    border-color:#34c759;

}

.customer-filter option{

    background:#1e1e1e;

    color:#fff;

}

.customer-btn{

    padding:14px 22px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

    transition:.25s;

}

.customer-btn-search{

    background:#34c759;

    color:#fff;

}

.customer-btn-search:hover{

    transform:translateY(-2px);

}

.customer-btn-reset{

    background:rgba(255,255,255,.08);

    color:#fff;

}

.customer-btn-reset:hover{

    background:rgba(255,255,255,.15);

}

.customer-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.customer-card{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px;

    transition:.25s;

}

.customer-card:hover{

    border-color:#34c759;

}

.customer-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:18px;

    margin-bottom:18px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.customer-name{

    font-size:20px;

    font-weight:700;

}

.customer-id{

    margin-top:4px;

    font-size:13px;

    opacity:.6;

}

.customer-status{

    padding:8px 18px;

    border-radius:30px;

    background:rgba(52,199,89,.15);

    color:#34c759;

    font-weight:700;

    font-size:13px;

}

.customer-section{

    margin-top:18px;

}

.customer-section-title{

    margin-bottom:12px;

    color:#34c759;

    text-transform:uppercase;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.customer-row{

    display:flex;

    justify-content:space-between;

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.customer-row:last-child{

    border-bottom:none;

}

.customer-label{

    opacity:.65;

}

.customer-value{

    font-weight:600;

    text-align:right;

}

.customer-address{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    border-radius:12px;

    padding:14px;

    line-height:1.8;

}

@media(max-width:900px){

    .customer-toolbar{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .customer-header{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

    .customer-row{

        flex-direction:column;

        gap:4px;

    }

    .customer-value{

        text-align:left;

    }

}

/* ========================================
   SHOP
======================================== */

.shop-hero {
    padding-top: 140px;
    background: #000;
}

.shop-hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .shop-hero-grid {
        grid-template-columns: 1fr 520px;
    }
}

.shop-hero-title {
    font-size: clamp(64px, 10vw, 120px);
    line-height: .95;
}

.shop-hero-desc {
    margin-top: 24px;
    max-width: 600px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    font-size: 18px;
}

.shop-featured-banner {
    background: linear-gradient(
        135deg,
        rgba(255,107,0,.12),
        rgba(255,107,0,.04)
    );
    border: 2px solid #FF6B00;
    border-radius: 28px;
    padding: 40px;
}

.shop-featured-banner h2 {
    font-size: 42px;
    line-height: 1;
    margin: 16px 0 24px;
    font-weight: 900;
}

.featured-prices {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.old-price {
    color: rgba(255,255,255,.4);
    text-decoration: line-through;
    font-size: 22px;
}

.new-price {
    color: #FF6B00;
    font-size: 42px;
    font-weight: 900;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.shop-products-section {
    background: #000;
    padding-bottom: 100px;
}

.shop-products-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .shop-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shop-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
    transition: .25s;
}

.shop-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,0,.5);
}

.shop-product-card-featured {
    border: 2px solid #FF6B00;
}

.shop-product-image {
    aspect-ratio: 1;
    background: #151515;
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.05);
}

.shop-product-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 24px;
}

.shop-product-content h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.shop-product-content p {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
    min-height: 80px;
    margin-bottom: 20px;
}

.shop-stock {
    color: #FF6B00;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.shop-stock-empty {
    color: #ff4b4b;
}

.shop-price {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.shop-price-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.shop-price-old {
    color: rgba(255,255,255,.4);
    text-decoration: line-through;
    font-size: 18px;
}

.shop-price-new {
    color: #FF6B00;
    font-size: 32px;
    font-weight: 900;
}

.shop-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.shop-badge-popular {
    background: #FF6B00;
    color: #000;
}

.shop-badge-price {
    background: #fff;
    color: #000;
}

.shop-product-card .add-to-cart-btn {
    margin-top: auto;
    width: 100%;
    height: 52px;
    border: none;
    background: #FF6B00;
    color: #000;
    font-weight: 900;
    letter-spacing: .08em;
    cursor: pointer;
    transition: .2s;
}

.shop-product-card .add-to-cart-btn:hover {
    background: #fff;
}

.shop-product-card .add-to-cart-btn:disabled {
    background: #333;
    color: #777;
    cursor: not-allowed;
}

.shop-quantity-selector {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 20px;
}

.qty-btn {

    width: 36px;
    height: 36px;

    border: 1px solid rgba(255,255,255,.15);

    background: #151515;

    color: #fff;

    border-radius: 8px;

    cursor: pointer;

    font-size: 18px;
    font-weight: 700;
}

.qty-btn:hover {

    border-color: #FF6B00;
}

.qty-value {

    min-width: 32px;

    text-align: center;

    font-weight: 700;

    font-size: 18px;
}

.shop-featured-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 58px;

    padding: 0 36px;

    background: #FF6B00;

    color: #000;

    border: none;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    transition: all .25s ease;
}

.shop-featured-btn:hover {

    background: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(255,107,0,.35);
}

.shop-featured-btn:active {

    transform: translateY(0);
}

.cart-product-qty {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 8px;
}

.cart-qty-btn {

    width: 34px;
    height: 34px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;

    background: rgba(255,255,255,.04);

    color: #fff;

    cursor: pointer;

    font-size: 18px;
    font-weight: 700;

    transition: .2s;
}

.cart-qty-btn:hover {

    background: #ff6b00;
    border-color: #ff6b00;
}

.cart-qty-value {

    min-width: 32px;

    text-align: center;

    font-size: 15px;
    font-weight: 700;

    color: #fff;
}

.bundleEditOverlay{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.82);
    backdrop-filter:blur(10px);

    z-index:999999;

}

.bundleEditOverlay.open{

    display:flex;

}

.bundleEditWindow{

    width:min(1100px,95vw);

    max-height:92vh;

    display:flex;
    flex-direction:column;

    background:#101010;

    border:1px solid rgba(255,122,0,.18);

    border-radius:26px;

    overflow:hidden;

    box-shadow:
        0 35px 90px rgba(0,0,0,.6);

}

.bundleEditHeader{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    padding:34px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.bundleEditBadge{

    display:inline-flex;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,122,0,.12);

    color:#ff7a00;

    font-size:11px;

    font-weight:700;

    letter-spacing:.12em;

    margin-bottom:18px;

}

.bundleEditTitle{

    margin:0;

    color:#fff;

    font-size:34px;

    font-weight:900;

}

.bundleEditSubtitle{

    margin-top:10px;

    color:rgba(255,255,255,.55);

    font-size:15px;

}

.bundleEditClose{

    width:48px;

    height:48px;

    border:none;

    border-radius:14px;

    background:rgba(255,122,0,.08);

    color:#ff7a00;

    font-size:28px;

    cursor:pointer;

    transition:.2s;

}

.bundleEditClose:hover{

    background:#ff7a00;

    color:#000;

}

.bundleEditForm{

    display:flex;

    flex-direction:column;

    flex:1;

    min-height:0;

}

.bundleEditContent{

    flex:1;

    overflow-y:auto;

    padding:34px;

    display:flex;

    flex-direction:column;

    gap:28px;

}

.bundleEditCard{

    background:#171717;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:24px;

}

.bundleEditCardTitle{

    margin-bottom:22px;

    color:#fff;

    font-size:20px;

    font-weight:800;

}

.bundleEditGrid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

.bundleEditField{

    display:flex;

    flex-direction:column;

}

.bundleEditFieldFull{

    grid-column:1/-1;

}

.bundleEditField label{

    margin-bottom:10px;

    color:rgba(255,255,255,.6);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.bundleEditField input{

    height:54px;

    padding:0 18px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:#101010;

    color:#fff;

    font-size:15px;

}

.bundleEditTextarea{

    width:100%;

    min-height:180px;

    resize:vertical;

    box-sizing:border-box;

    padding:18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:#101010;

    color:#fff;

    font-size:15px;

}

.bundleEditProductsHeader{

    margin-bottom:22px;

}

.bundleEditProductsHeader h3{

    margin:0;

    color:#fff;

    font-size:24px;

    font-weight:800;

}

.bundleEditProductsHeader span{

    display:block;

    margin-top:8px;

    color:rgba(255,255,255,.55);

}

.bundleEditProducts{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.bundleEditProductRow{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-radius:16px;

    background:#101010;

    border:1px solid rgba(255,255,255,.05);

    transition:.2s;

}

.bundleEditProductRow:hover{

    border-color:rgba(255,122,0,.35);

    background:#141414;

}

.bundleEditProductLeft{

    display:flex;

    align-items:center;

    gap:18px;

}

.bundleEditCheckbox{

    position:relative;

    display:flex;

    cursor:pointer;

}

.bundleEditCheckbox input{

    width:22px;

    height:22px;

    cursor:pointer;

}

.bundleEditProductInfo{

    display:flex;

    flex-direction:column;

}

.bundleEditProductName{

    color:#fff;

    font-size:16px;

    font-weight:700;

}

.bundleEditProductRight{

    display:flex;

    align-items:center;

    gap:12px;

}

.bundleEditProductRight label{

    color:rgba(255,255,255,.6);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.bundleEditQty{

    width:90px;

    height:48px;

    text-align:center;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:#181818;

    color:#fff;

    font-size:16px;

}

.bundleEditFooter{

    display:flex;

    justify-content:flex-end;

    gap:16px;

    padding:24px 32px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#0b0b0b;

}

.bundleEditCancel{

    padding:15px 30px;

    border:none;

    border-radius:14px;

    background:#2a2a2a;

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}

.bundleEditCancel:hover{

    background:#383838;

}

.bundleEditSave{

    padding:15px 34px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#ff6b00,#ff9800);

    color:#fff;

    font-weight:800;

    cursor:pointer;

    transition:.2s;

}

.bundleEditSave:hover{

    transform:translateY(-2px);

    box-shadow:0 14px 34px rgba(255,122,0,.28);

}

.bundleEditContent::-webkit-scrollbar{

    width:8px;

}

.bundleEditContent::-webkit-scrollbar-thumb{

    background:#ff7a00;

    border-radius:999px;

}

@media(max-width:900px){

    .bundleEditGrid{

        grid-template-columns:1fr;

    }

    .bundleEditProductRow{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

    }

    .bundleEditProductRight{

        width:100%;

        justify-content:space-between;

    }

    .bundleEditFooter{

        flex-direction:column;

    }

    .bundleEditFooter button{

        width:100%;

    }

}
.add-bundle-to-cart-btn {

    width: 100%;

    padding: 14px 20px;

    background: #ff6b00;

    color: #fff;

    border: none;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;

}
.add-bundle-to-cart-btn:hover {

    background: #e55f00;

}
.add-bundle-to-cart-btn:disabled {

    background: #8b8b8b;

    color: #fff;

    cursor: not-allowed;

    opacity: .7;

}

.shop-featured-image-wrapper{

    width:calc(100% + 60px);

    margin:-30px -30px 30px;

    overflow:hidden;

    border-radius:20px 20px 0 0;

}

.shop-featured-image{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

}

button,

.btn-primary,

.btn-secondary,

.btn-login,

.btn-menu,

.btn-cta-primary,

.btn-cta-secondary,

.profile-action-btn,

.shop-featured-btn,

.add-to-cart-btn,

.add-bundle-to-cart-btn,

.sport-card-link,

.qty-btn {

    border-radius: 14px;

}


.medal-select-box{

    width:min(1200px,95vw);

    max-height:92vh;

    display:flex;

    flex-direction:column;

    background:#0a0a0a;

    border:1px solid rgba(255,107,0,.22);

    border-radius:24px;

    overflow:hidden;

    position:relative;

    box-shadow:
        0 30px 80px rgba(0,0,0,.55);

}

.medal-select-box::before{

    content:"";

    position:absolute;

    top:-220px;
    right:-220px;

    width:620px;
    height:620px;

    border-radius:50%;

    background:radial-gradient(circle,rgba(255,107,0,.10),transparent 70%);

    pointer-events:none;

}

.medal-select-content{

    flex:1;

    min-height:0;

    overflow-y:auto;

    padding:32px 40px;

}

.medal-select-content::-webkit-scrollbar{

    width:8px;

}

.medal-select-content::-webkit-scrollbar-thumb{

    background:#ff7a00;

    border-radius:999px;

}

.medal-picker{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:35px;

    align-items:start;

}

.medal-list{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.medal-card{

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:18px;

    cursor:pointer;

    transition:.2s;

}

.medal-card:hover{

    border-color:#ff7a00;

    background:#1d1d1d;

}

.medal-card.selected{

    border-color:#ff7a00;

    background:rgba(255,107,0,.08);

}

.medal-card h3{

    margin:0;

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.2s;

}

.medal-card:hover h3,
.medal-card.selected h3{

    color:#ff7a00;

}

.medal-preview-panel{

    min-height:420px;

    background:#141414;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.medal-preview-panel img{

    width:100%;

    max-width:340px;

    border-radius:18px;

    display:none;

}

.medal-preview-panel h3{

    margin-top:24px;

    color:#fff;

    font-size:30px;

    text-align:center;

}

.medal-select-box>.panel-actions-center{

    flex:none;

    padding:24px 40px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#0d0d0d;

}

.medal-select-box .challenge-modal-header{

    padding:48px 56px 28px 72px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

@media(max-width:900px){

    .medal-select-content{

        padding:24px;

    }

    .medal-picker{

        grid-template-columns:1fr;

    }

    .medal-preview-panel{

        min-height:300px;

    }

    .medal-select-box>.panel-actions-center{

        padding:20px 24px;

    }

}

#editMedalModal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

#editMedalModal.open{

    display:flex;

}

#editMedalModal .modal-backdrop{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(10px);

}

#editMedalModal .modal-container{

    position:relative;

    width:min(900px,95vw);

    max-height:92vh;

    display:flex;

    flex-direction:column;

    z-index:2;

}

#editMedalModal .modal-box{

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:24px;

    background:#101010;

    border:1px solid rgba(255,122,0,.18);

    box-shadow:0 35px 90px rgba(0,0,0,.6);

}


#editMedalModal .modal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 34px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

#editMedalModal .modal-header h3{

    margin:0;

    color:#fff;

    font-size:30px;

    font-weight:900;

}

#editMedalModal .btn-close{

    width:48px;

    height:48px;

    border:none;

    border-radius:14px;

    background:rgba(255,122,0,.08);

    color:#ff7a00;

    font-size:26px;

    cursor:pointer;

    transition:.2s;

}

#editMedalModal .btn-close:hover{

    background:#ff7a00;

    color:#000;

}


#editMedalModal .modal-body{

    padding:34px;

    overflow-y:auto;

    background:#101010;

}

#editMedalModal .profile-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

#editMedalModal .profile-item{

    display:flex;

    flex-direction:column;

}

#editMedalModal label{

    margin-bottom:10px;

    color:rgba(255,255,255,.6);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

#editMedalModal input,

#editMedalModal textarea{

    width:100%;

    box-sizing:border-box;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:#181818;

    color:#fff;

    font-size:15px;

}

#editMedalModal input{

    height:54px;

    padding:0 18px;

}

#editMedalModal textarea{

    min-height:180px;

    padding:18px;

    resize:vertical;

}

#editMedalModal input:focus,

#editMedalModal textarea:focus{

    outline:none;

    border-color:#ff7a00;

    box-shadow:0 0 0 3px rgba(255,122,0,.12);

}

/* ---------- Preview ---------- */

#editMedalPreview{

    margin-top:30px;

    padding-top:24px;

    border-top:1px solid rgba(255,255,255,.08);

}

#edit_medal_image{

    display:block;

    width:180px !important;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    background:#181818;

}

/* ---------- FOOTER ---------- */

#editMedalModal .modal-footer{

    display:flex;

    justify-content:flex-end;

    gap:16px;

    padding:24px 32px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#0b0b0b;

}


@media(max-width:900px){

    #editMedalModal .profile-grid{

        grid-template-columns:1fr;

    }

    #editMedalModal .modal-footer{

        flex-direction:column;

    }

    #editMedalModal .modal-footer button{

        width:100%;

    }

}



@media (max-width:320px){

    .header-inner{
        padding:0 1rem;
    }

    .hero-heading{
        font-size:clamp(42px,13vw,56px);
    }

    .hero-desc{
        font-size:.95rem;
        margin-top:1.25rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        justify-content:center;
    }

    .hero-stats{
        gap:1rem;
        flex-wrap:wrap;
    }

    .section-title,
    .how-title,
    .community-title,
    .cta-title,
    .medals-title{
        font-size:36px;
    }

    .sport-card-number{
        font-size:52px;
    }
}


@media (min-width:321px) and (max-width:360px){

    .hero-heading{
        font-size:clamp(48px,12vw,64px);
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        justify-content:center;
    }

    .section-title,
    .how-title,
    .community-title,
    .cta-title,
    .medals-title{
        font-size:40px;
    }
}

@media (min-width:321px) and (max-width:360px){

    .hero-heading{
        font-size:clamp(48px,12vw,64px);
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        justify-content:center;

        padding-left:16px;
        padding-right:16px;

        font-size:13px;
        letter-spacing:.03em;
    }

    .hero-stats{
        gap:16px;
    }

    .stat-number{
        font-size:30px;
    }

    .section-title,
    .how-title,
    .community-title,
    .cta-title,
    .medals-title{
        font-size:40px;
    }
}

@media (min-width:391px) and (max-width:414px){

    .hero-heading{
        font-size:72px;
    }

    .section-title,
    .how-title,
    .community-title,
    .cta-title,
    .medals-title{
        font-size:46px;
    }
}



@media (max-width:320px){

    /* AUTH */
    .auth-page{
        padding:88px 1rem 2rem;
    }

    .auth-box{
        padding:1.5rem;
    }

    .auth-title{
        font-size:34px;
    }

    .password-requirements,
    .field-error-tooltip{
        min-width:auto;
        width:100%;
        font-size:12px;
    }

    /* DASHBOARD */
    .dash-title{
        font-size:40px;
    }

    .dash-subtitle{
        font-size:1rem;
    }

    .dash-stat-item{
        padding:1rem .5rem;
    }

    .dash-stat-number{
        font-size:1.6rem;
    }

    .dash-action-card{
        grid-template-columns:48px 1fr;
        gap:.75rem;
        padding:1rem;
    }

    .dash-action-arrow{
        display:none;
    }

    .dash-action-number{
        font-size:1.5rem;
    }

    /* PROFILE */
    .profile-grid{
        padding:14px;
        gap:14px;
    }

    /* CHALLENGES */
    .challenge-card{
        width:100%;
        min-height:auto;
    }

    .challenge-modal-card{
        padding:18px 14px;
    }

    .challenge-category-grid{
        grid-auto-flow:row;
        grid-template-rows:none;
        max-height:none;
        overflow:visible;
    }

    /* ERROR */
    .error-card{
        padding:32px 18px;
    }

    .error-code{
        font-size:64px;
    }

}


@media (min-width:321px) and (max-width:360px){

    .auth-box{
        padding:2rem;
    }

    .auth-title{
        font-size:38px;
    }

    .dash-title{
        font-size:46px;
    }

    .dash-subtitle{
        font-size:1.1rem;
    }

    .dash-action-card{
        grid-template-columns:56px 1fr;
    }

    .dash-action-arrow{
        display:none;
    }

    .challenge-card{
        width:100%;
    }

    .challenge-category-grid{
        grid-auto-flow:row;
        grid-template-rows:none;
        max-height:none;
        overflow:visible;
    }

}


@media (min-width:361px) and (max-width:390px){

    .auth-title{
        font-size:42px;
    }

    .dash-title{
        font-size:52px;
    }

    .challenge-card{
        width:100%;
    }

    .challenge-category-grid{
        grid-auto-flow:row;
        grid-template-rows:none;
        max-height:none;
        overflow:visible;
    }

}


@media (min-width:391px) and (max-width:414px){

    .auth-title{
        font-size:46px;
    }

    .dash-title{
        font-size:56px;
    }

    .challenge-card{
        width:100%;
    }

    .challenge-category-grid{
        grid-auto-flow:row;
        grid-template-rows:none;
        max-height:none;
        overflow:visible;
    }
    .hero-buttons{

    gap:10px;

}

.hero-buttons .btn-primary,

.hero-buttons .btn-secondary{

    padding:0 18px;

    height:52px;

    font-size:13px;

    letter-spacing:.04em;

    white-space:nowrap;

}

}

@media (max-width:320px){

    .cart-title,
    .success-title,
    .about-title,
    .about-bottom h2,
    .legal-title{
        font-size:36px;
    }

    .cart-header{
        margin-bottom:2rem;
    }

    .cart-item-card{
        grid-template-columns:1fr;
        padding:1rem;
        gap:.75rem;
    }

    .cart-item-right{
        width:100%;
        flex-direction:row;
        justify-content:space-between;
        border-top:1px solid rgba(255,255,255,.08);
        padding-top:1rem;
    }

    .cart-item-number{
        font-size:2rem;
        min-width:0;
        text-align:left;
    }

    .cart-summary{
        padding:1.25rem;
    }

    .cart-total-value{
        font-size:1.8rem;
    }

    .order-card,
    .admin-proof-card,
    .success-card,
    .legal-block{
        padding:18px;
    }

    .challengeEditHeader{
        padding:18px;
    }

    .challengeEditHeader h3{
        font-size:24px;
    }

    .challengeEditContent{
        padding:18px;
    }

    .challengeEditFooter{
        padding:18px;
        flex-direction:column;
    }

    .challengeEditFooter button{
        width:100%;
    }

    .about-highlight{
        padding:24px;
    }

    .about-highlight h2{
        font-size:32px;
    }

    .success-info{
        grid-template-columns:1fr;
    }

}

@media (min-width:321px) and (max-width:360px){

    .cart-title,
    .success-title,
    .legal-title{
        font-size:42px;
    }

    .about-title,
    .about-bottom h2{
        font-size:40px;
    }

    .cart-item-card{
        grid-template-columns:1fr;
    }

    .cart-item-right{
        width:100%;
        flex-direction:row;
        justify-content:space-between;
        border-top:1px solid rgba(255,255,255,.08);
        padding-top:1rem;
    }

    .success-info{
        grid-template-columns:1fr;
    }

}

@media (min-width:361px) and (max-width:390px){

    .cart-title,
    .success-title,
    .legal-title{
        font-size:48px;
    }

    .about-title,
    .about-bottom h2{
        font-size:44px;
    }

    .success-info{
        grid-template-columns:1fr;
    }

}

@media (min-width:391px) and (max-width:414px){

    .cart-title,
    .success-title,
    .legal-title{
        font-size:52px;
    }

    .about-title,
    .about-bottom h2{
        font-size:48px;
    }

    .success-info{
        grid-template-columns:1fr;
    }

}

@media (max-width:320px){

    .pwreset-card,
    .forgotpw-card,
    .contact-card{
        padding:24px 18px;
        border-radius:18px;
    }

    .pwreset-title,
    .forgotpw-title,
    .contact-title,
    .shop-hero-title{
        font-size:36px;
    }

    .pwreset-description,
    .forgotpw-description,
    .contact-text,
    .shop-hero-desc{
        font-size:14px;
        line-height:1.7;
    }

    .pwreset-input,
    .forgotpw-input,
    .contact-form input,
    .contact-form textarea{
        font-size:16px;
    }

    .monthlygift-content{
        padding:20px;
    }

    .monthlygift-content h2{
        font-size:34px;
    }

    .monthlygift-features{
        font-size:14px;
    }

    .shop-featured-banner{
        padding:20px;
    }

    .shop-featured-image-wrapper{
        width:calc(100% + 40px);
        margin:-20px -20px 20px;
    }

    .shop-featured-image{
        height:180px;
    }

    .shop-featured-banner h2{
        font-size:28px;
    }

    .new-price,
    .shop-price-new,
    .shop-price{
        font-size:28px;
    }

    .shop-product-content{
        padding:18px;
    }

    .shop-product-content h3{
        font-size:18px;
    }

    .shop-product-content p{
        min-height:auto;
    }

    .bundleEditHeader{
        padding:18px;
    }

    .bundleEditTitle{
        font-size:24px;
    }

    .bundleEditContent{
        padding:18px;
    }

    .bundleEditCard{
        padding:18px;
    }

    .bundleEditFooter{
        padding:18px;
        flex-direction:column;
    }

    .bundleEditFooter button{
        width:100%;
    }

    .customer-card{
        padding:18px;
    }

    .customer-name{
        font-size:18px;
    }

    .why-heading{
        font-size:34px;
    }

}

@media (min-width:321px) and (max-width:360px){

    .pwreset-title,
    .forgotpw-title,
    .contact-title,
    .shop-hero-title{
        font-size:42px;
    }

    .shop-featured-banner{
        padding:24px;
    }

    .shop-featured-image{
        height:220px;
    }

    .shop-product-content p{
        min-height:auto;
    }

    .monthlygift-content h2{
        font-size:40px;
    }

    .why-heading{
        font-size:40px;
    }

}

@media (min-width:361px) and (max-width:390px){

    .pwreset-title,
    .forgotpw-title,
    .contact-title,
    .shop-hero-title{
        font-size:48px;
    }

    .shop-featured-image{
        height:240px;
    }

    .shop-product-content p{
        min-height:auto;
    }

    .monthlygift-content h2{
        font-size:44px;
    }

    .why-heading{
        font-size:44px;
    }

}

@media (min-width:391px) and (max-width:414px){

    .pwreset-title,
    .forgotpw-title,
    .contact-title,
    .shop-hero-title{
        font-size:52px;
    }

    .shop-featured-image{
        height:260px;
    }

    .shop-product-content p{
        min-height:auto;
    }

    .monthlygift-content h2{
        font-size:48px;
    }

    .why-heading{
        font-size:48px;
    }

}

/* ------------------- 320px ------------------- */

@media (max-width:320px){

    .medal-select-box{

        width:96vw;

        max-height:95vh;

    }

    .medal-select-box .challenge-modal-header{

        padding:24px 18px 18px;

    }

    .medal-select-box .cart-title{

        font-size:34px;

        line-height:1;

    }

    .medal-select-content{

        padding:18px;

    }

    .medal-picker{

        grid-template-columns:1fr;

        gap:20px;

    }

    .medal-preview-panel{

        min-height:260px;

        padding:20px;

    }

    .medal-preview-panel img{

        max-width:180px;

    }

    .medal-preview-panel h3{

        font-size:22px;

    }

    .medal-card{

        padding:14px;

    }

    .medal-card h3{

        font-size:16px;

    }

    .medal-select-box>.panel-actions-center{

        padding:18px;

        flex-direction:column;

    }

    .medal-select-box>.panel-actions-center button{

        width:100%;

    }

}

/* ------------------- 321-360 ------------------- */

@media (min-width:321px) and (max-width:360px){

    .medal-select-box .challenge-modal-header{

        padding:28px 22px 22px;

    }

    .medal-select-box .cart-title{

        font-size:40px;

    }

    .medal-select-content{

        padding:22px;

    }

    .medal-picker{

        grid-template-columns:1fr;

        gap:22px;

    }

    .medal-preview-panel{

        min-height:300px;

    }

    .medal-preview-panel img{

        max-width:220px;

    }

    .medal-select-box>.panel-actions-center{

        flex-direction:column;

    }

    .medal-select-box>.panel-actions-center button{

        width:100%;

    }

}

/* ------------------- 361-390 ------------------- */

@media (min-width:361px) and (max-width:390px){

    .medal-select-box .challenge-modal-header{

        padding:30px 24px 22px;

    }

    .medal-select-box .cart-title{

        font-size:46px;

    }

    .medal-select-content{

        padding:24px;

    }

    .medal-picker{

        grid-template-columns:1fr;

        gap:24px;

    }

    .medal-preview-panel{

        min-height:320px;

    }

    .medal-preview-panel img{

        max-width:250px;

    }

}

/* ------------------- 391-414 ------------------- */

@media (min-width:391px) and (max-width:414px){

    .medal-select-box .challenge-modal-header{

        padding:32px 26px 24px;

    }

    .medal-select-box .cart-title{

        font-size:50px;

    }

    .medal-select-content{

        padding:26px;

    }

    .medal-picker{

        grid-template-columns:1fr;

        gap:26px;

    }

    .medal-preview-panel{

        min-height:340px;

    }

    .medal-preview-panel img{

        max-width:280px;

    }

}