:root {
    --color-bg: #F3F3F3;
    --color-bg-light: #ffffff;
    --color-bg-lighter: #e8e8e8;
    --color-text: #0A1C3D;
    --color-text-secondary: #4a5568;
    --color-text-muted: #718096;
    --color-accent: #C0122D;
    --color-accent-secondary: #D9A94A;
    --color-accent-dark: #9a0e23;
    --color-border: #d1d5db;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-bg-light);
}

.btn--primary:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-bg-light);
}

.btn--primary:focus {
    background-color: var(--color-accent-secondary);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn--secondary:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-bg-light);
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(243, 243, 243, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 14px 30px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: fit-content;
    max-width: 96%;

    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 999px;

    box-shadow:
        0 12px 40px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.6);

    transition: all .35s ease;
}
.nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    background: #D9A94A;
    border-radius: clamp(30px, 5vw, 50px);
}

.nav__menu a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #000000;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.nav__instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: var(--color-accent);
    border: none;
    transition: all 0.3s ease;
    color: var(--color-bg-light);
    flex-shrink: 0;
    margin-left: 12px;
}

.nav__logo {
    display: none;
}

.nav__instagram:hover {
    background: var(--color-accent-secondary);
    transform: scale(1.05);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--color-accent-secondary);
    border: none;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 22px;
    z-index: 1001;
    transition: all 0.3s ease;
}

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

.nav__toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-bg);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav__menu a:hover {
    color: #c0122d;
    background: var(--color-bg-light);
}

.nav__menu a.active {
    color: #c0122d;
    background: var(--color-bg-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-left: auto;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.nav__toggle:hover span {
    background: var(--color-accent);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-text);
    color: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    background: var(--color-bg-lighter);
    padding: clamp(10px, 2vw, 16px) clamp(24px, 5vw, 64px);
    border-radius: clamp(30px, 5vw, 50px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 28, 61, 0.92) 0%,
        rgba(10, 28, 61, 0.85) 50%,
        rgba(10, 28, 61, 0.7) 100%
    );
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

.hero__particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { left: 30%; animation-delay: 2s; }
.hero__particles span:nth-child(3) { left: 50%; animation-delay: 4s; }
.hero__particles span:nth-child(4) { left: 70%; animation-delay: 6s; }
.hero__particles span:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(217, 169, 74, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 30px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.hero__badge svg {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.hero__title {
    font-size: clamp(3.4rem, 7.2vw, 7rem);
    font-weight: 900;
    line-height: 0.90;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    color: var(--color-bg);
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: #e60023;
    position: relative;
    text-shadow: 0 0 30px rgba(230, 0, 35, 0.35);
}

.hero__title-line--accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;

.hero__buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero .btn--primary {
     font-size: 0.95rem;
    padding: 20px 46px;
    border-radius: 999px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff0033, #c40021);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 45px rgba(230, 0, 35, 0.35);
}
.hero .btn--secondary {
    font-size: 0.95rem;
    padding: 20px 46px;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero .btn--secondary:hover {
    background: #ffffff;
    color: #071833;
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255, 255, 255, 0.18);
}

.hero .btn--primary:hover {
    background: var(--color-bg);
    color: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 169, 74, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(243, 243, 243, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 10;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    animation: scrollDown 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDown {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(5px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero__content {
        padding: 60px 0 40px;
    }
    
    .hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .hero .btn--primary {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
    }
    
    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.6875rem;
        padding: 8px 16px;
    }
    
    .hero__title {
        font-size: clamp(2rem, 12vw, 3rem);
    }
}


.disciplines {
    padding: 120px 0;
    background: var(--color-bg-light);
}

.disciplines__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.discipline-card {
    background: var(--color-bg-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.discipline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.discipline-card__image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.discipline-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.discipline-card:hover .discipline-card__image img {
    transform: scale(1.05);
}

.discipline-card__content {
    padding: 32px;
}

.discipline-card__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.discipline-card__content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.discipline-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

.featured-event {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
}

.featured-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 169, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.featured-event__badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-accent-secondary);
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    border-radius: 4px;
}

.featured-event__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.featured-event__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

.featured-event__details {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.detail__value {
    font-size: 1.125rem;
    font-weight: 500;
}

.events-grid {
    padding: 80px 0;
    background: var(--color-bg);
}

.events-grid__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.events-grid .featured-event {
    padding: 48px;
    background: var(--color-bg-lighter);
    border-radius: 20px;
}

.events-grid .featured-event::before {
    display: none;
}

.events-grid .competitions {
    padding: 0;
    background: transparent;
}

.events-grid .competitions__list {
    gap: 12px;
}

.events-grid .competition-card {
    padding: 16px 20px;
}

@media (max-width: 992px) {
    .events-grid__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.membership {
    padding: 120px 0;
    background: var(--color-bg-light);
}

.membership__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.membership-card {
    background: var(--color-bg-light);
    padding: 48px 32px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.membership-card:hover {
    border-color: var(--color-accent);
}

.membership-card--featured {
    border-color: var(--color-accent);
    position: relative;
}

.membership-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 16px;
    background: var(--color-accent);
    color: var(--color-bg-light);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.membership-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.membership-card__features {
    list-style: none;
    margin-bottom: 32px;
}

.membership-card__features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.membership-card__features li:last-child {
    border-bottom: none;
}

.competitions {
    padding: 120px 0;
    background: var(--color-bg);
}

.competitions__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competition-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.competition-card:hover {
    border-color: var(--color-accent);
    transform: translateX(8px);
}

.competition-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
}

.competition-card__date .month {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.competition-card__date .day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.competition-card__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.competition-card__content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.competition-card__status {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    margin-top: 8px;
    display: inline-block;
}

.competition-card__status--upcoming {
    background: rgba(192, 18, 45, 0.2);
    color: var(--color-accent);
}

.competition-card__status--past {
    background: rgba(51, 54, 63, 0.5);
    color: var(--color-text-muted);
}

.team {
    padding: 0;
    background: var(--color-bg);
}

.team-hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.team-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    border-radius: 30px;
    color: #fff;
}

.team-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.team-hero__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.athlete-card {
    position: relative;
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.athlete-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.athlete-card__image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-accent);
    transition: all 0.3s ease;
}

.athlete-card:hover .athlete-card__image {
    border-color: var(--color-accent-secondary);
    transform: scale(1.05);
}

.athlete-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.athlete-card__info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.athlete-card__discipline {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
}

.athlete-card__location {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.athlete-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.athlete-card__meta-item {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.athlete-card__meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-right: 4px;
}

.athlete-card__medal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D9A94A 0%, #c9992f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 169, 74, 0.4);
}

.athlete-card__medal svg {
    width: 20px;
    height: 20px;
}

.athlete-featured {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    background: var(--color-bg-light);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-accent-secondary);
    position: relative;
}

.athlete-featured::before {
    content: 'VICE WORLD CHAMPION 2025';
    position: absolute;
    top: 24px;
    right: -36px;
    background: var(--color-accent-secondary);
    color: var(--color-text);
    padding: 8px 48px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    transform: rotate(45deg);
    z-index: 2;
}

.athlete-featured__image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.athlete-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.athlete-featured:hover .athlete-featured__image img {
    transform: scale(1.05);
}

.athlete-featured__image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(10, 28, 61, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #fff;
    border: 1px solid var(--color-accent-secondary);
}

.athlete-featured__image-badge svg {
    color: var(--color-accent-secondary);
}

.athlete-featured__image-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.athlete-featured__info {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.athlete-featured__role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(192, 18, 45, 0.1);
    border: 1px solid var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    border-radius: 30px;
    margin-bottom: 20px;
    width: fit-content;
}

.athlete-featured__name {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.athlete-featured__achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent-secondary);
    margin-bottom: 24px;
}

.athlete-featured__achievement svg {
    flex-shrink: 0;
}

.athlete-featured__disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.athlete-featured__discipline {
    padding: 8px 18px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.athlete-featured__discipline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(192, 18, 45, 0.05);
}

.athlete-featured__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.athlete-featured__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.athlete-featured__meta-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: 10px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.athlete-featured__meta-content {
    display: flex;
    flex-direction: column;
}

.athlete-featured__meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.athlete-featured__meta-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

@media (max-width: 992px) {
    .athlete-featured {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .athlete-featured__image {
        min-height: 350px;
    }

    .athlete-featured__info {
        padding: 32px 24px;
    }

    .athlete-featured::before {
        display: none;
    }

    .athlete-featured__meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .athlete-featured__image {
        min-height: 280px;
    }
}

.team-spotlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.team-spotlight__card {
    background: var(--color-bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
}

.team-spotlight__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent-secondary);
}

.team-spotlight__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-spotlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.team-spotlight__card:hover .team-spotlight__image img {
    transform: scale(1.08);
}

.team-spotlight__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(10, 28, 61, 0.9) 0%, transparent 100%);
}

.team-spotlight__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(217, 169, 74, 0.95);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    border-radius: 20px;
}

.team-spotlight__badge svg {
    width: 14px;
    height: 14px;
}

.team-spotlight__body {
    padding: 20px 24px 24px;
}

.team-spotlight__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
    line-height: 1.2;
}

.team-spotlight__achievement {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent-secondary);
    margin-bottom: 14px;
}

.team-spotlight__disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.team-spotlight__discipline {
    padding: 4px 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: 16px;
}

.team-spotlight__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.team-spotlight__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.team-spotlight__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.team-spotlight__meta-item span {
    font-weight: 500;
    color: var(--color-text-secondary);
}

.team-spotlight__cta {
    text-align: center;
    padding-bottom: 80px;
}

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

@media (max-width: 576px) {
    .team-spotlight {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-spotlight__image {
        height: 220px;
    }
}

.team__cta {
    text-align: center;
    padding-bottom: 100px;
}

@media (max-width: 992px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .team__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-hero {
        padding: 48px 0;
    }
}

.judges {
    padding: 0;
    background: var(--color-bg);
}

.judges-header {
    background: linear-gradient(135deg, #0A1C3D 0%, #1a3a6b 100%);
    padding: 80px 0;
    text-align: center;
}

.judges-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(192, 18, 45, 0.2);
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.judges-header__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.judges-header__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.judges-card {
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.judges-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.judges-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.judges-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.judges-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.judges-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--color-bg-light);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 48px;
}

.judges-stat {
    text-align: center;
    padding: 20px;
    position: relative;
}

.judges-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.judges-stat__number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.judges-stat__label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.judges-cta {
    text-align: center;
    padding-bottom: 80px;
}

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

    .judges-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .judges-stat:nth-child(2)::after {
        display: none;
    }

    .judges-stat:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .judges-header {
        padding: 60px 0;
    }

    .judges-grid {
        grid-template-columns: 1fr;
    }

    .judges-stats {
        grid-template-columns: 1fr;
    }

    .judges-cta {
        padding-bottom: 60px;
    }
}
}

.about {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 28, 61, 0.95));
    padding: 60px 24px 24px;
}

.about__image-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.about__image-stat {
    text-align: center;
    color: #fff;
}

.about__image-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-accent);
}

.about__image-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.about__image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.about__content {
    padding: 20px 0;
}

.about__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(192, 18, 45, 0.1);
    border: 1px solid var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    border-radius: 30px;
    color: var(--color-accent);
}

.about__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.15;
}

.about__text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.about__feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .about__wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }
    
    .about__image img {
        height: 350px;
    }
    
    .about__image-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .about__image-stat-number {
        font-size: 1.5rem;
    }
}

/* === ABOUT: STATEMENTS === */
.about__statements {
    padding: 100px 0;
    background: var(--color-text);
    color: var(--color-bg-light);
}

.about__statements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.about__statement {
    padding: 48px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
}

.about__statement:nth-child(even) {
    border-right: none;
}

.about__statement:nth-last-child(-n+2) {
    border-bottom: none;
}

.about__statement-heading {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.about__statement-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* === ABOUT: MISSION & VISION === */
.about__mv {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.about__mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.about__mv-card {
    padding: 48px;
    background: var(--color-bg);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.about__mv-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.about__mv-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about__mv-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* === ABOUT: SLOGAN BANNER === */
.about__slogan {
    padding: 60px 0;
    background: var(--color-accent);
    text-align: center;
}

.about__slogan-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about__statements-grid {
        grid-template-columns: 1fr;
    }
    .about__statement {
        border-right: none;
    }
    .about__statement:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .about__statement:last-child {
        border-bottom: none;
    }
    .about__mv-grid {
        grid-template-columns: 1fr;
    }
    .about__mv-card {
        padding: 32px;
    }
}

/* === DOCUMENTS === */
.documents {
    padding: 120px 0;
    background: var(--color-bg);
}

.documents__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.document-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.document-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.document-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-lighter);
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    color: var(--color-accent);
    border-radius: 50%;
}

.document-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.document-card span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.news {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.news .container > h2 {
    text-align: center;
    margin-bottom: 60px;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.news-tab {
    padding: 12px 28px;
    background: var(--color-bg-light);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab:hover,
.news-tab.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.news-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-item {
    background: var(--color-bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.news-item__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 16px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.news-item__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-item:hover .news-item__image img {
    transform: scale(1.1);
}

.news-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-item__date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 0.8125rem;
}

.news-item__content {
    padding: 24px;
}

.news-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-item:hover .news-item__title {
    color: var(--color-accent);
}

.news-item__excerpt {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.news-item__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-item__link svg {
    transition: transform 0.3s ease;
}

.news-item:hover .news-item__link svg {
    transform: translateX(4px);
}

.news-item__likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.news-pagination__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.news-pagination__btn:hover,
.news-pagination__btn.active {
    background: var(--color-accent);
    color: #fff;
}

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

@media (max-width: 768px) {
    .news {
        padding: 80px 0 60px;
    }

    .news-wrapper {
        grid-template-columns: 1fr;
    }

    .news-tabs {
        gap: 8px;
    }

    .news-tab {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }
}

.contact {
    padding: 0;
    background: var(--color-bg-light);
}

.contact-header {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.contact-header__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
}

.contact-header__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-header .container {
    position: relative;
    z-index: 1;
}

.contact-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    margin-bottom: 20px;
}

.contact-header__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-header__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    padding: 80px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    background: var(--color-bg);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-info-card__content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.contact-info-card__content p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.contact-info-card__content a,
.contact-info-card__content span {
    font-size: 0.9375rem;
    color: var(--color-accent);
    font-weight: 500;
}

.contact-social {
    background: var(--color-bg);
    padding: 24px;
    border-radius: 16px;
}

.contact-social h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact-social__links {
    display: flex;
    gap: 12px;
}

.contact-social__link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 12px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.contact-social__link:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--color-bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.contact-form__header {
    margin-bottom: 32px;
}

.contact-form__header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-form__header p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(192, 18, 45, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--color-bg);
    color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact__form .btn {
    width: 100%;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 280px;
    }

    .contact-social {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 50px;
    }

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

    .contact-info {
        flex-direction: column;
    }

    .contact-info-card {
        min-width: 100%;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

.footer {
    background: linear-gradient(180deg, var(--color-text) 0%, #0d1120 100%);
    border-top: 3px solid var(--color-accent);
}

.footer__top {
    padding: 80px 0 60px;
}

.footer__top-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--color-bg);
    margin-bottom: 4px;
}

.footer__tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
}

.footer__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(243, 243, 243, 0.7);
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(243, 243, 243, 0.08);
    border: 1px solid rgba(243, 243, 243, 0.15);
    color: var(--color-bg);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
    transform: translateY(-3px);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__column h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(217, 169, 74, 0.3);
}

.footer__column ul {
    list-style: none;
}

.footer__column li {
    margin-bottom: 14px;
}

.footer__column a {
    font-size: 0.9375rem;
    color: rgba(243, 243, 243, 0.75);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__column a:hover {
    color: var(--color-bg);
    transform: translateX(5px);
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(243, 243, 243, 0.75);
    font-size: 0.9375rem;
}

.footer__contact svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.footer__bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.875rem;
    color: rgba(243, 243, 243, 0.5);
}

.footer__legal {
    display: flex;
    gap: 32px;
}

.footer__legal a {
    font-size: 0.8125rem;
    color: rgba(243, 243, 243, 0.5);
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--color-accent);
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }

    .hero__content {
        padding: 100px 60px;
    }

    .team__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav__menu {
        padding: clamp(8px, 1.5vw, 12px) 6%;
    }

    .nav__menu a {
        padding: 10px 14px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }

    .hero__content {
        padding: 80px 40px;
    }

    .hero__title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .nav__menu {
        padding: clamp(6px, 1.2vw, 10px) 5%;
    }

    .nav__menu a {
        padding: 8px 12px;
        font-size: 0.8125rem;
    }

    .disciplines__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .documents__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__values {
        grid-template-columns: repeat(2, 1fr);
    }

    .judges__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }

    .nav {
        justify-content: center;
        gap: 12px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
        background: var(--color-bg-lighter);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 80px 24px 24px;
        z-index: 999;
        border-radius: 0;
        margin: 0;
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .nav__menu a {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        padding: 14px 24px;
        text-align: center;
    }

    .nav__menu a.active {
        background: var(--color-accent);
        color: var(--color-bg-light);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__instagram {
        position: static;
        margin-left: 0;
    }

    .nav__logo {
        z-index: 1000;
    }

    .nav__toggle.active {
        background: var(--color-accent);
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__content {
        padding: 120px 24px 60px;
        text-align: center;
        align-items: center;
    }

    .hero__image {
        display: none;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .disciplines__grid {
        grid-template-columns: 1fr;
    }

    .disciplines,
    .featured-event,
    .membership,
    .competitions,
    .team,
    .judges,
    .about,
    .documents,
    .news,
    .contact {
        padding: 80px 0;
    }

    .membership__grid {
        grid-template-columns: 1fr;
    }

    .membership-card {
        padding: 32px 24px;
    }

    .competition-card {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .competition-card .btn--small {
        grid-column: 2;
        justify-self: start;
    }

    .competition-card__content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .judges__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .judges__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__image {
        order: -1;
        aspect-ratio: 16/9;
    }

    .about__values {
        grid-template-columns: 1fr;
    }

    .documents__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .document-card {
        padding: 24px 16px;
    }

    .news__grid {
        grid-template-columns: 1fr;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__top-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .featured-event__details {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .nav {
        padding: 10px 16px;
        gap: 8px;
    }

    .nav__menu {
        padding: clamp(6px, 1.5vw, 10px) 4%;
        border-radius: clamp(24px, 4vw, 32px);
    }

    .nav__menu a {
        font-size: 0.8125rem;
        padding: 8px 14px;
        border-radius: 18px;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__content {
        padding: 100px 16px 48px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.8125rem;
    }

    .disciplines,
    .featured-event,
    .membership,
    .competitions,
    .team,
    .judges,
    .about,
    .documents,
    .news,
    .contact {
        padding: 60px 0;
    }

    .competition-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .competition-card__date {
        flex-direction: row;
        gap: 8px;
        align-self: flex-start;
    }

    .competition-card .btn--small {
        grid-column: auto;
        width: fit-content;
    }

    .judges__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat {
        padding: 24px 16px;
    }

    .stat__number {
        font-size: 2.5rem;
    }

    .documents__grid {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .athlete-card__image {
        width: 80px;
        height: 80px;
        margin: 0 auto 12px;
    }

    .athlete-card h4 {
        font-size: 0.875rem;
    }

    .athlete-card span {
        font-size: 0.75rem;
    }

    .about__values {
        gap: 16px;
    }

    .value h4 {
        font-size: 0.875rem;
    }

    .value p {
        font-size: 0.8125rem;
    }

    .news-card__content {
        padding: 16px;
    }

    .news-card__content h3 {
        font-size: 1rem;
    }

    .footer__top {
        padding: 60px 0 40px;
    }

    .footer__nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__logo h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .nav__menu {
        padding: clamp(4px, 1vw, 8px) 3%;
        border-radius: clamp(20px, 4vw, 28px);
    }

    .nav__menu a {
        font-size: 0.75rem;
        padding: 8px 10px;
        border-radius: 16px;
    }

    .nav__instagram {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }

    .nav__instagram svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .nav__menu {
        padding: clamp(4px, 1vw, 6px) 2%;
        border-radius: clamp(18px, 4vw, 24px);
    }

    .nav__menu a {
        font-size: 0.6875rem;
        padding: 6px 8px;
    }

    .nav__toggle {
        padding: 10px 12px;
    }

    .nav__toggle span {
        width: 18px;
    }

    .nav__instagram {
        width: 38px;
        height: 38px;
    }
}

    .discipline-card__content {
        padding: 20px;
    }

    .discipline-card__content h3 {
        font-size: 1.25rem;
    }

    .featured-event__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .featured-event__description {
        font-size: 1rem;
    }

    .membership-card h3 {
        font-size: 1.25rem;
    }

    .membership-card__features li {
        font-size: 0.875rem;
        padding: 10px 0;
    }

    .competition-card__content h3 {
        font-size: 1rem;
    }

    .competition-card__content p {
        font-size: 0.8125rem;
    }

    .judges__info h3 {
        font-size: 1.5rem;
    }

    .judges__info > p {
        font-size: 0.9375rem;
    }

    .judges__requirements li {
        font-size: 0.875rem;
    }

    .about__text > p {
        font-size: 0.9375rem;
    }

    .document-card h4 {
        font-size: 0.875rem;
    }

    .news-card__date {
        font-size: 0.6875rem;
    }

    .news-card__content p {
        font-size: 0.8125rem;
    }

    .contact__details {
        gap: 16px;
    }

    .contact__item strong {
        font-size: 0.6875rem;
    }

    .contact__item a,
    .contact__item span {
        font-size: 0.9375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.875rem;
    }

    .footer__desc {
        font-size: 0.875rem;
    }

    .footer__column a {
        font-size: 0.875rem;
    }

    .footer__contact li {
        font-size: 0.875rem;
    }

    .footer__bottom p,
    .footer__legal a {
        font-size: 0.75rem;
    }
}

.legal {
    padding: 0;
    background: var(--color-bg);
}

.legal__header {
    background: linear-gradient(135deg, #0A1C3D 0%, #1a3a6b 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.legal__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(192, 18, 45, 0.2);
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.legal__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.legal__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.legal__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.legal__nav-link {
    padding: 12px 32px;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.legal__nav-link:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
}

.legal__downloads {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.legal__download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.legal__download-link:hover {
    background: var(--color-accent);
    color: #fff;
}

.legal__section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 60px;
}

.legal__section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.legal__effective {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.legal__section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal__section h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal__section p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal__section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal__section ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.legal__section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
}

.legal__section a {
    color: var(--color-accent);
    font-weight: 500;
}

.legal__section a:hover {
    text-decoration: underline;
}

.legal__divider {
    max-width: 800px;
    margin: 0 auto 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-secondary), transparent);
}

.contact__success {
    text-align: center;
    padding: 48px 24px;
}

.contact__success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(192, 18, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contact__success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.contact__success p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 400px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav__logo span {
        font-size: 1rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.5rem;
    }

    .nav__instagram,
    .nav__toggle {
        width: 36px;
        height: 36px;
    }

    .team__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .athlete-card__image {
        width: 60px;
        height: 60px;
    }
}
/* ================================
   USAPAF HERO FINAL UPGRADE
   Added by Irina / ChatGPT
================================ */

.hero {
    min-height: 82vh;
    background: #030b1f;
}

.hero__overlay {
    background:
        radial-gradient(circle at 78% 35%, rgba(230, 0, 35, 0.22), transparent 32%),
        radial-gradient(circle at 15% 75%, rgba(217, 169, 74, 0.15), transparent 35%),
        linear-gradient(135deg, rgba(3, 10, 28, 0.96) 0%, rgba(5, 18, 48, 0.92) 48%, rgba(2, 8, 22, 0.86) 100%);
}

.hero__bg-img {
    filter: brightness(0.55) contrast(1.15) saturate(1.1);
    transform: scale(1.04);
    animation: heroSlowZoom 18s ease-in-out infinite alternate;
}

@keyframes heroSlowZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.1);
    }
}

.hero__content {
    max-width: 1050px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero__badge {
    color: #d9a94a;
    border-color: rgba(217, 169, 74, 0.75);
    background: rgba(217, 169, 74, 0.08);
    letter-spacing: 0.18em;
    box-shadow: 0 0 35px rgba(217, 169, 74, 0.12);
}

.hero__badge::before,
.hero__badge::after {
    content: "";
    display: inline-block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d9a94a);
    margin-right: 16px;
}

.hero__badge::after {
    margin-right: 0;
    margin-left: 16px;
    background: linear-gradient(90deg, #d9a94a, transparent);
}

.hero__title {
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    text-shadow: 0 14px 45px rgba(0, 0, 0, 0.6);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: #e60023;
    text-shadow: 0 0 35px rgba(230, 0, 35, 0.42);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 38px;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hero .btn {
    min-width: 230px;
    justify-content: center;
}

.hero .btn--primary {
    padding: 20px 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff0033, #c40021);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 45px rgba(230, 0, 35, 0.35);
}

.hero .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(230, 0, 35, 0.45);
}

.hero .btn--secondary {
    padding: 20px 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero .btn--secondary:hover {
    background: #ffffff;
    color: #071833;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero {
        min-height: 86vh;
    }

    .hero__content {
        padding: 90px 20px 60px;
    }

    .hero__badge::before,
    .hero__badge::after {
        display: none;
    }

    .hero__title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero .btn {
        width: 100%;
        max-width: 300px;
    }
}
.header {
    padding-top: 18px;
}

.nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero {
    min-height: 94vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 80px;
}

.hero__content {
    transform: translateY(-10px);
}

.hero__badge {
    margin-bottom: 34px;
}

.hero__title {
    font-size: clamp(3.4rem, 6.6vw, 7.2rem);
    line-height: 0.86;
    margin-bottom: 34px;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent::after {
    opacity: 0.9;
    height: 5px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, #d9a94a, transparent);
}

.hero__subtitle {
    margin-bottom: 42px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero__buttons {
    gap: 24px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
}

.hero__stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .hero__stats {
        gap: 20px;
        margin-top: 32px;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__stat-divider {
        height: 30px;
    }
}

.hero .btn {
    min-width: 245px;
    height: 60px;
}

.hero .btn--primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff0033 0%, #d60028 45%, #9d0019 100%);
    box-shadow:
        0 20px 55px rgba(230, 0, 35, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero .btn--primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.hero .btn--primary:hover::before {
    left: 120%;
}

.hero .btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__scroll {
    bottom: 30px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 92vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero__title {
        font-size: clamp(2.4rem, 12vw, 4.2rem);
        line-height: 0.9;
    }

    .hero .btn {
        min-width: 0;
        height: 56px;
    }
}.nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav > a.social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0033, #c40021);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(230, 0, 35, 0.28);
    transition: all 0.25s ease;
}

.nav > a.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.nav > a.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 40px rgba(230, 0, 35, 0.42);
}
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero__content {
    transform: translateY(10px);
}

.hero__scroll {
    display: none;
}
.hero__bg-img {
    animation: heroImageMove 18s ease-in-out infinite alternate;
    transform: scale(1.06);
    filter: brightness(0.5) contrast(1.15) saturate(1.15);
}

@keyframes heroImageMove {
    0% {
        transform: scale(1.06) translateX(0) translateY(0);
    }

    100% {
        transform: scale(1.12) translateX(-18px) translateY(-10px);
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 70%, rgba(255,255,255,0.08), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(230,0,35,0.12), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(217,169,74,0.08), transparent 35%);
    animation: heroSmoke 14s ease-in-out infinite alternate;
    opacity: 0.75;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(3,10,28,0.25), transparent 45%, rgba(230,0,35,0.10)),
        radial-gradient(circle at 50% 100%, rgba(255,255,255,0.08), transparent 38%);
    animation: heroLightMove 12s ease-in-out infinite alternate;
}

@keyframes heroSmoke {
    0% {
        transform: translateX(-20px) translateY(10px) scale(1);
        opacity: 0.55;
    }

    100% {
        transform: translateX(25px) translateY(-15px) scale(1.08);
        opacity: 0.85;
    }
}

@keyframes heroLightMove {
    0% {
        opacity: 0.45;
        transform: translateX(-10px);
    }

    100% {
        opacity: 0.75;
        transform: translateX(20px);
    }
}

.hero__content {
    position: relative;
    z-index: 5;
}

.hero__particles {
    z-index: 4;
}
.hero__bg-img {
    object-fit: cover;
    object-position: center center;
    opacity: 1;

    filter:
        brightness(0.78)
        contrast(1.18)
        saturate(1.2);

    transform: scale(1.02);
}

.hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 10, 28, 0.45) 0%,
            rgba(3, 10, 28, 0.28) 42%,
            rgba(3, 10, 28, 0.12) 70%,
            rgba(3, 10, 28, 0.05) 100%
        );
}

.hero::before,
.hero::after {
    opacity: 0.35;
}
.hero {
    position: relative;
    overflow: hidden;
}

.hero__bg-text{
    position:absolute;

    left:-4%;
    top:26%;

    transform:translateY(-50%);

    z-index:1;

    font-size:clamp(7rem,14vw,15rem);
    font-weight:900;
    line-height:.78;

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

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

    -webkit-text-stroke:1px rgba(255,255,255,.025);

    filter:blur(.2px);

    pointer-events:none;
    user-select:none;
}
.hero__bg-img {
    animation: heroBreath 18s ease-in-out infinite alternate;
    transform: scale(1.02);
}

@keyframes heroBreath {
    0% {
        transform: scale(1.02) translateY(0);
    }

    100% {
        transform: scale(1.06) translateY(-22px);
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background:
        radial-gradient(circle at 18% 75%, rgba(255, 0, 45, 0.18), transparent 30%),
        radial-gradient(circle at 75% 70%, rgba(0, 80, 255, 0.16), transparent 35%),
        radial-gradient(circle at 50% 95%, rgba(217, 169, 74, 0.12), transparent 40%);

    animation: smokeMove 16s ease-in-out infinite alternate;
}

@keyframes smokeMove {
    0% {
        transform: translateX(-20px) translateY(10px) scale(1);
        opacity: 0.55;
    }

    100% {
        transform: translateX(25px) translateY(-15px) scale(1.08);
        opacity: 0.85;
    }
}

.hero__content {
    position: relative;
    z-index: 6;
}
.hero__buttons .btn,
.hero .btn {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease,
        border-color 0.35s ease;
}

.hero .btn--primary {
    box-shadow:
        0 0 25px rgba(255, 0, 51, 0.45),
        0 12px 35px rgba(230, 0, 35, 0.35);

    animation: redButtonBreath 4.8s ease-in-out infinite;
}

.hero .btn--primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 0 35px rgba(255, 0, 51, 0.65),
        0 18px 45px rgba(230, 0, 35, 0.45);
    filter: brightness(1.08);
}

.hero .btn--secondary {
    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.14),
        inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.hero .btn--secondary:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 0 28px rgba(255, 255, 255, 0.32),
        inset 0 0 18px rgba(255, 255, 255, 0.14);
    filter: brightness(1.08);
}

@keyframes redButtonBreath {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.06);
    }
}

/* slow premium particles */
.hero__particles span {
    width: 4px;
    height: 4px;
    background: rgba(255, 210, 120, 0.8);
    box-shadow:
        0 0 10px rgba(255, 210, 120, 0.7),
        0 0 24px rgba(255, 0, 51, 0.25);
    animation: premiumParticleFloat 12s ease-in-out infinite alternate;
}

.hero__particles span:nth-child(1) {
    left: 12%;
    top: 72%;
    animation-delay: 0s;
}

.hero__particles span:nth-child(2) {
    left: 24%;
    top: 38%;
    animation-delay: 1.2s;
}

.hero__particles span:nth-child(3) {
    left: 37%;
    top: 68%;
    animation-delay: 2.1s;
}

.hero__particles span:nth-child(4) {
    left: 53%;
    top: 30%;
    animation-delay: 3.4s;
}

.hero__particles span:nth-child(5) {
    left: 66%;
    top: 74%;
    animation-delay: 4.2s;
}

.hero__particles span:nth-child(6) {
    left: 78%;
    top: 44%;
    animation-delay: 5.3s;
}

.hero__particles span:nth-child(7) {
    left: 88%;
    top: 64%;
    animation-delay: 6.1s;
}

.hero__particles span:nth-child(8) {
    left: 46%;
    top: 82%;
    animation-delay: 7s;
}

@keyframes premiumParticleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.25;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: translateY(-34px) translateX(18px) scale(1.35);
        opacity: 0.45;
    }
}

/* subtle fabric / athlete area motion */
.hero__bg::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 38%;
    height: 100%;
    z-index: 4;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 80, 255, 0.04) 45%,
            rgba(255, 0, 51, 0.08) 100%
        );

    animation: fabricLightSway 6.5s ease-in-out infinite alternate;
}

@keyframes fabricLightSway {
    0% {
        transform: translateX(0);
        opacity: 0.35;
    }

    100% {
        transform: translateX(-8px);
        opacity: 0.65;
    }
}
.hero__content {
    transform: translateY(-18px);
}
.events-grid {
    padding: 100px 6% 120px;
    background:
        radial-gradient(circle at 10% 20%, rgba(192,18,45,0.08), transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(10,28,61,0.08), transparent 35%),
        #f7f6f2;
}

.events-grid .container {
    max-width: 1180px;
    margin: 0 auto;
}

.events-grid__wrapper {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

/* LEFT BIG CARD */
.featured-event {
    padding: 60px 56px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.94), rgba(245,245,242,0.88));
    box-shadow:
        0 30px 80px rgba(7,21,47,0.13),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid rgba(7,21,47,0.08);
}

.featured-event__badge {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(217,169,74,0.22);
    color: #9a6b16;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.featured-event__title {
    font-size: clamp(2.2rem, 3.6vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: #07152f;
    margin-bottom: 34px;
}

.featured-event__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4d5564;
    max-width: 620px;
    margin-bottom: 34px;
}

.featured-event__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 34px;
}

.detail__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7b8494;
    margin-bottom: 6px;
}

.detail__value {
    font-size: 1rem;
    font-weight: 700;
    color: #07152f;
}

/* RIGHT SIDE */
.competitions {
    padding: 0;
    background: transparent;
}

.competitions .section-title {
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 900;
    color: #07152f;
    margin-bottom: 34px;
}

.competitions__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* RIGHT CARDS */
.competition-card {
    display: grid;
    grid-template-columns: 86px 1fr auto;
    gap: 22px;
    align-items: center;

    padding: 22px 26px;
    border-radius: 24px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(7,21,47,0.08);
    box-shadow: 0 18px 50px rgba(7,21,47,0.08);

    transition: all 0.35s ease;
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(7,21,47,0.14);
}

.competition-card__date {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f0f0ed);
    border: 1px solid rgba(7,21,47,0.08);

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

.competition-card__date .month {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #c0122d;
}

.competition-card__date .day {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    color: #07152f;
}

.competition-card__content h3 {
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.2;
    color: #07152f;
    margin-bottom: 6px;
}

.competition-card__content p {
    font-size: 0.84rem;
    color: #5b6270;
    margin-bottom: 8px;
}

.competition-card__status {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.competition-card__status--upcoming {
    background: rgba(192,18,45,0.12);
    color: #c0122d;
}

.competition-card__status--past {
    background: rgba(7,21,47,0.08);
    color: #6b7280;
}

.competition-card .btn--small {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #07152f;
    background: transparent;
}

/* MOBILE */
@media (max-width: 900px) {
    .events-grid__wrapper {
        grid-template-columns: 1fr;
    }

    .featured-event {
        padding: 36px 28px;
    }

    .featured-event__details {
        grid-template-columns: 1fr;
    }

    .competition-card {
        grid-template-columns: 1fr;
    }
}/* 1. Featured card glow */
.featured-event {
    background: linear-gradient(135deg, #ffffff, #f9f8f4);
    box-shadow: 0 30px 80px rgba(10, 20, 40, 0.10), 0 0 60px rgba(214, 170, 70, 0.10);
    border: 1px solid rgba(214, 170, 70, 0.14);
}

/* 2. Register button */
.featured-event .btn,
.featured-event .btn--primary,
.featured-event a.btn {
    background: linear-gradient(135deg, #ff173b, #c30027);
    box-shadow: 0 15px 35px rgba(192, 18, 45, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.featured-event .btn:hover,
.featured-event .btn--primary:hover,
.featured-event a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(192, 18, 45, 0.45);
    filter: brightness(1.06);
}

/* 3. Competition cards hover */
.competition-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.competition-card:hover {
    transform: translateX(8px);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(10, 20, 40, 0.12);
}

/* 4. Red line near title */
.competitions .section-title,
.events-grid .section-title {
    position: relative;
    padding-left: 24px;
}

.competitions .section-title::before,
.events-grid .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 70%;
    border-radius: 999px;
    background: #c0122d;
    box-shadow: 0 0 18px rgba(192, 18, 45, 0.30);
}
/* Competitions title line softer */
.competitions .section-title::before,
.events-grid .section-title::before {
    height: 54%;
    top: 18px;
    width: 5px;
}
/* Competition cards cleaner white */
.competition-card {
    background: rgba(255,255,255,.96);
}

.competition-card:hover {
    transform: translateX(6px);
    box-shadow:
        0 22px 55px rgba(10,20,40,.13),
        inset 0 1px 0 rgba(255,255,255,.95);
}
.featured-event {
    position: relative;
    overflow: hidden;

    min-height: 520px;
    padding: 60px 56px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,.98),
        rgba(249,248,244,.94)
    );

    border: 1px solid rgba(214,177,106,.16);

    box-shadow:
        0 34px 90px rgba(10,20,40,.12),
        0 0 70px rgba(214,177,106,.12),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.featured-event {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.featured-event::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        radial-gradient(circle at 18% 10%, rgba(217, 177, 106, 0.18), transparent 34%),
        radial-gradient(circle at 88% 86%, rgba(0, 55, 160, 0.11), transparent 38%),
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(249,248,244,0.94));

    pointer-events: none;
}

.featured-event::before {
    z-index: 1;
}

.featured-event > * {
    position: relative;
    z-index: 2;
}

.featured-event__eyebrow {
    margin-bottom: 18px;

    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #b58422;
}

.featured-event__title {
    margin-bottom: 12px;

    font-size: clamp(2.6rem, 4.2vw, 4.35rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.featured-event__sport {
    margin-bottom: 30px;

    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #c0122d;
}

.featured-event__description {
    max-width: 610px;
    margin-bottom: 34px;

    font-size: 1rem;
    line-height: 1.72;

    color: #3f4755;
}

.featured-event__details {
    gap: 34px;
}

.detail__label::before {
    margin-right: 7px;
}

.featured-event__details .detail:first-child .detail__label::before {
    content: "📅";
}

.featured-event__details .detail:last-child .detail__label::before {
    content: "📍";
}

.featured-event .btn,
.featured-event .btn--primary,
.featured-event a.btn {
    min-width: 320px;
    min-height: 56px;

    padding: 17px 38px;

    font-size: 0.82rem;
    letter-spacing: 0.13em;
}

/* Right competition cards — closer to premium panel */
.competition-card {
    position: relative;
    overflow: hidden;

    min-height: 124px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,246,0.94));

    border: 1px solid rgba(7,21,47,0.075);

    box-shadow:
        0 18px 48px rgba(7,21,47,0.085),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.competition-card:first-child {
    border-top: 2px solid rgba(217,177,106,0.55);
}

.competition-card::after {
    content: "→";

    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 1.15rem;
    font-weight: 900;

    color: rgba(192,18,45,0.36);

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.competition-card:hover::after {
    transform: translate(5px, -50%);
    color: rgba(192,18,45,0.75);
}

.competition-card__date {
    box-shadow:
        0 10px 24px rgba(7,21,47,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.competition-card__status--upcoming {
    background: rgba(192,18,45,0.13);
    color: #c0122d;
}

.competition-card__status--past {
    background: rgba(7,21,47,0.09);
    color: #5f6673;
}
.competition-countdown {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 26px;
    padding: 14px 22px;

    border-radius: 999px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(192,18,45,.14);

    box-shadow:
        0 14px 38px rgba(7,21,47,.08),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.competition-countdown__label {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7b8494;
}

.competition-countdown__number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: #c0122d;
}

.competition-countdown__text {
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #07152f;
}
.event-page {
    min-height: 100vh;
    padding: 160px 6% 100px;
    background:
        radial-gradient(circle at 15% 20%, rgba(192,18,45,.08), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(10,28,61,.08), transparent 34%),
        linear-gradient(180deg, #f7f6f2 0%, #ffffff 100%);
}

.event-hero {
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 64px;

    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(249,248,244,.94));

    border: 1px solid rgba(214,177,106,.16);

    box-shadow:
        0 34px 90px rgba(10,20,40,.12),
        0 0 70px rgba(214,177,106,.12),
        inset 0 1px 0 rgba(255,255,255,.96);
}

.event-hero h1 {
    max-width: 820px;
    margin: 28px 0 28px;

    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .92;
    letter-spacing: -.07em;
    font-weight: 900;

    color: #07152f;
}

.event-hero p {
    max-width: 720px;
    margin-bottom: 42px;

    font-size: 1.08rem;
    line-height: 1.75;

    color: #3f4755;
}

.event-hero .featured-event__details {
    max-width: 620px;
    margin-bottom: 42px;
}

@media (max-width: 800px) {
    .event-hero {
        padding: 46px 30px;
    }

    .event-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}
.event-page--europe {
    padding: 150px 6% 100px;
    background:
        radial-gradient(circle at 12% 18%, rgba(192,18,45,.08), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(10,28,61,.08), transparent 36%),
        linear-gradient(180deg, #f7f6f2 0%, #ffffff 100%);
}

.event-hero--landing {
    max-width: 1180px;
    margin: 0 auto 80px;
    padding: 64px;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: center;

    border-radius: 42px;
}

.event-hero__content h1 {
    max-width: 780px;
}

.event-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.event-hero__visual {
    position: relative;
    aspect-ratio: 2 / 3;
    min-height: 460px;
    border-radius: 34px;
    overflow: hidden;

    background:
        radial-gradient(circle at 70% 25%, rgba(255,255,255,.24), transparent 24%),
        linear-gradient(135deg, rgba(5,16,38,.96), rgba(120,0,28,.84)),
        url("images/top.png");

    background-size: cover;
    background-position: center right;

    box-shadow:
        0 34px 90px rgba(10,20,40,.22),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.event-hero__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
}

.event-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,16,38,0) 55%, rgba(5,16,38,.55) 100%);
    pointer-events: none;
}

.event-info-grid {
    max-width: 1180px;
    margin: 0 auto 90px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-info-card {
    padding: 34px 32px;
    border-radius: 28px;

    background: rgba(255,255,255,.92);
    border: 1px solid rgba(7,21,47,.08);

    box-shadow:
        0 20px 55px rgba(7,21,47,.08),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.event-info-card span {
    display: inline-flex;
    margin-bottom: 24px;

    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .16em;
    color: #c0122d;
}

.event-info-card h3 {
    margin-bottom: 14px;

    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 900;
    color: #07152f;
}

.event-info-card p {
    font-size: .95rem;
    line-height: 1.7;
    color: #4d5564;
}

.event-schedule {
    max-width: 1180px;
    margin: 0 auto 90px;
}

.event-section-header {
    margin-bottom: 34px;
}

.event-section-header span,
.event-cta span {
    display: inline-flex;
    margin-bottom: 14px;

    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c0122d;
}

.event-section-header h2,
.event-cta h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 900;
    color: #07152f;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    padding: 26px 32px;
    border-radius: 24px;

    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 26px;
    align-items: center;

    background: rgba(255,255,255,.92);
    border: 1px solid rgba(7,21,47,.08);
    box-shadow: 0 16px 42px rgba(7,21,47,.07);
}

.timeline-item strong {
    font-size: 1rem;
    font-weight: 900;
    color: #c0122d;
}

.timeline-item p {
    font-size: .98rem;
    line-height: 1.6;
    color: #3f4755;
}

.event-cta {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px;

    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(217,177,106,.18), transparent 34%),
        linear-gradient(135deg, #07152f, #150815);

    color: white;
    box-shadow: 0 34px 90px rgba(7,21,47,.22);
}

.event-cta h2 {
    max-width: 760px;
    color: white;
}

.event-cta p {
    max-width: 680px;
    margin: 24px 0 34px;

    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,.76);
}

@media (max-width: 900px) {
    .event-hero--landing {
        grid-template-columns: 1fr;
        padding: 38px 28px;
    }

    .event-hero__visual {
        min-height: 320px;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .event-cta {
        padding: 42px 30px;
    }
}
.team-preview {
    position: relative;
    overflow: hidden;

    background: #f7f6f2;
}

.team-preview__header {
    padding: 72px 24px 76px;

    text-align: center;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #c90025 0%,
            #f00012 48%,
            #c70020 100%
        );
}

.team-preview__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.14);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.team-preview__title {
    margin: 0;

    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.team-preview__description {
    max-width: 620px;
    margin: 22px auto 0;

    font-size: 1rem;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.84);
}

.team-preview__content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 62px 36px 76px;
}

.team-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.athlete-preview-card {
    position: relative;
    overflow: hidden;

    min-width: 0;

    border: 1px solid rgba(7, 21, 47, 0.09);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 22px 56px rgba(7, 21, 47, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.athlete-preview-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 32px 74px rgba(7, 21, 47, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.athlete-preview-card__photo {
    position: relative;
    overflow: hidden;

    height: 300px;

    background: #07152f;
}

.athlete-preview-card__photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(5, 14, 32, 0.22) 100%
        );

    pointer-events: none;
}

.athlete-preview-card__photo img {
    width: 100%;
    height: 100%;

    display: block;

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

    transition: transform 0.6s ease;
}

.athlete-preview-card:hover .athlete-preview-card__photo img {
    transform: scale(1.035);
}

.athlete-preview-card__role {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;

    padding: 8px 14px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #f3ba29,
        #d88b00
    );

    box-shadow: 0 10px 24px rgba(117, 70, 0, 0.3);

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #402700;
}

.athlete-preview-card__body {
    padding: 24px 22px 22px;
}

.athlete-preview-card__body h3 {
    margin: 0;

    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;

    color: #07152f;
}

.athlete-preview-card__achievement {
    margin: 8px 0 18px;

    font-size: 0.83rem;
    font-weight: 700;

    color: #b48325;
}

.athlete-preview-card__disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 20px;
}

.athlete-preview-card__disciplines span {
    display: inline-flex;

    padding: 7px 11px;

    border: 1px solid rgba(7, 21, 47, 0.1);
    border-radius: 999px;

    background: #f8f8f7;

    font-size: 0.68rem;
    font-weight: 600;

    color: #505866;
}

.athlete-preview-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding-top: 17px;

    border-top: 1px solid rgba(7, 21, 47, 0.08);

    font-size: 0.69rem;
    font-weight: 700;

    color: #696f7b;
}

.team-preview__action {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

.team-preview__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 16px 32px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #ff173b,
        #c30027
    );

    box-shadow:
        0 17px 38px rgba(192, 18, 45, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;

    color: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.team-preview__button:hover {
    transform: translateY(-3px);

    filter: brightness(1.05);

    box-shadow:
        0 24px 48px rgba(192, 18, 45, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@media (max-width: 980px) {
    .team-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .team-preview__header {
        padding: 58px 22px;
    }

    .team-preview__content {
        padding: 42px 20px 62px;
    }

    .team-preview__grid {
        grid-template-columns: 1fr;
    }

    .athlete-preview-card__photo {
        height: 340px;
    }

    .athlete-preview-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}.team-page {
    min-height: 100vh;
    padding-top: 130px;

    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(192, 18, 45, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(8, 31, 75, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #f7f6f2 0%,
            #ffffff 100%
        );
}

.team-page__hero {
    padding: 82px 24px 78px;

    text-align: center;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.12),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #c90025,
            #ee0015 48%,
            #c60020
        );
}

.team-page__eyebrow {
    display: inline-flex;

    margin-bottom: 20px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.13);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.team-page__hero h1 {
    margin: 0;

    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.team-page__hero p {
    max-width: 680px;
    margin: 24px auto 0;

    font-size: 1rem;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.82);
}

.team-roster {
    display: grid;
    gap: 32px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 74px 34px 84px;
}

.athlete-profile-card {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 320px 1fr;

    min-height: 390px;

    border: 1px solid rgba(203, 151, 43, 0.42);
    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.99),
            rgba(249, 248, 244, 0.96)
        );

    box-shadow:
        0 30px 78px rgba(7, 21, 47, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.athlete-profile-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 42px 92px rgba(7, 21, 47, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.athlete-profile-card__photo {
    position: relative;
    overflow: hidden;

    min-height: 390px;

    background: #07152f;
}

.athlete-profile-card__photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(3, 12, 29, 0.35)
        );
}

.athlete-profile-card__photo img {
    width: 100%;
    height: 100%;

    display: block;

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

.athlete-profile-card__photo-label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;

    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    background: rgba(6, 21, 48, 0.84);
    backdrop-filter: blur(14px);

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #ffffff;
}

.athlete-profile-card__content {
    position: relative;

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

    min-width: 0;
    padding: 46px 48px;
}

.athlete-profile-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.athlete-profile-card__role {
    display: inline-flex;

    margin-bottom: 17px;
    padding: 8px 14px;

    border: 1px solid rgba(192, 18, 45, 0.28);
    border-radius: 999px;

    background: rgba(192, 18, 45, 0.06);

    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #a70e28;
}

.athlete-profile-card__content h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;

    color: #07152f;
}

.athlete-profile-card__achievement {
    margin: 13px 0 0;

    font-size: 0.95rem;
    font-weight: 700;

    color: #b27b1b;
}

.athlete-profile-card__ribbon {
    position: absolute;
    top: 27px;
    right: -53px;

    width: 210px;
    padding: 10px;

    transform: rotate(45deg);

    background: linear-gradient(
        135deg,
        #f2b724,
        #d78300
    );

    box-shadow: 0 10px 28px rgba(105, 62, 0, 0.25);

    font-size: 0.59rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;

    color: #4d2d00;
}

.athlete-profile-card__disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 25px;
}

.athlete-profile-card__disciplines span {
    padding: 8px 13px;

    border: 1px solid rgba(7, 21, 47, 0.11);
    border-radius: 999px;

    background: #f8f8f7;

    font-size: 0.7rem;
    font-weight: 600;

    color: #4d5664;
}

.athlete-profile-card__divider {
    height: 1px;
    margin: 29px 0 25px;

    background: rgba(7, 21, 47, 0.1);
}

.athlete-profile-card__information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
}

.profile-information-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-information-item__label {
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #9b7c43;
}

.profile-information-item strong {
    font-size: 0.82rem;
    line-height: 1.4;

    color: #222a37;
}

.team-page__cta {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 70px 60px;

    border-radius: 38px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(218, 170, 59, 0.17),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #07152f,
            #150815
        );

    box-shadow: 0 35px 90px rgba(7, 21, 47, 0.23);

    color: #ffffff;
}

.team-page__cta > span {
    display: inline-flex;

    margin-bottom: 18px;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;

    color: #e1b655;
}

.team-page__cta h2 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.team-page__cta p {
    max-width: 680px;
    margin: 25px 0 34px;

    font-size: 1rem;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.74);
}

.team-page__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 17px 34px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #ff173b,
        #c30027
    );

    box-shadow: 0 18px 42px rgba(192, 18, 45, 0.42);

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    color: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.team-page__cta-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 25px 54px rgba(192, 18, 45, 0.53);
}

@media (max-width: 900px) {
    .athlete-profile-card {
        grid-template-columns: 1fr;
    }

    .athlete-profile-card__photo {
        min-height: 470px;
    }

    .athlete-profile-card__content {
        padding: 38px 32px;
    }
}

@media (max-width: 620px) {
    .team-page {
        padding-top: 100px;
    }

    .team-roster {
        padding: 46px 18px 64px;
    }

    .athlete-profile-card__photo {
        min-height: 390px;
    }

    .athlete-profile-card__top {
        flex-direction: column;
    }

    .athlete-profile-card__information {
        grid-template-columns: 1fr;
    }

    .team-page__cta {
        margin: 0 18px 70px;
        padding: 45px 28px;
    }
}/* ================================================= */
/* USAPAF JUDGES SECTION */
/* ================================================= */

.judges-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(196, 17, 48, 0.06), transparent 28%),
        linear-gradient(180deg, #f5f7fb 0%, #ffffff 48%, #f4f6fa 100%);
    color: #0b1736;
}


/* ================================================= */
/* ВЕРХНЯЯ СИНЯЯ СТРОКА */
/* ================================================= */

.judges-title-bar {
    position: relative;
    width: 100%;
    padding: 26px 20px;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.05), transparent 40%),
        linear-gradient(135deg, #071b4d 0%, #0a2d72 55%, #071a49 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 4px solid #c41130;
    box-shadow: 0 16px 38px rgba(4, 20, 58, 0.18);
}

.judges-title-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.12) 50%,
            transparent 100%
        );
}

.judges-title-bar-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.judges-title-line {
    display: block;
    width: 110px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.75)
    );
}

.judges-title-line:last-child {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.75),
        transparent
    );
}

.judges-title-bar-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2.6px;
    font-size: 14px;
    white-space: nowrap;
}

.judges-title-bar-text span {
    font-weight: 400;
    opacity: 0.74;
}

.judges-title-bar-text strong {
    font-weight: 800;
}


/* ================================================= */
/* ЗАГОЛОВОК СПИСКА СУДЕЙ */
/* ================================================= */

.judges-directory {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 30px 105px;
}

.judges-section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.judges-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #c41130;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.judges-section-heading h2 {
    margin: 0 0 16px;
    color: #091c4b;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.judges-section-heading p {
    max-width: 690px;
    margin: 0 auto;
    color: #647088;
    font-size: 16px;
    line-height: 1.8;
}


/* ================================================= */
/* КАРТОЧКИ СУДЕЙ */
/* ================================================= */

.judges-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.judge-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(8, 35, 91, 0.1);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(7, 27, 71, 0.1);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.judge-card:hover {
    transform: translateY(-9px);
    border-color: rgba(196, 17, 48, 0.28);
    box-shadow: 0 28px 65px rgba(7, 27, 71, 0.17);
}

.judge-card-featured {
    border-color: rgba(196, 17, 48, 0.28);
}

.judge-card-featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a90e29, #ef244d, #a90e29);
}

.judge-photo-wrapper {
    position: relative;
    height: 355px;
    overflow: hidden;
    background: #dce2ec;
}

.judge-photo-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 48%,
        rgba(4, 16, 50, 0.68) 100%
    );
    pointer-events: none;
}

.judge-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.judge-card:hover .judge-photo {
    transform: scale(1.045);
}

.judge-country {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    padding: 8px 13px;
    color: #ffffff;
    background: rgba(5, 24, 68, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.judge-featured-badge {
    position: absolute;
    z-index: 3;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #af0c2a, #de173e);
    border-radius: 30px;
    box-shadow: 0 8px 22px rgba(196, 17, 48, 0.35);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.judge-card-content {
    padding: 27px 25px 25px;
}

.judge-category {
    display: block;
    margin-bottom: 9px;
    color: #c41130;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.judge-card-content h3 {
    margin: 0 0 7px;
    color: #081a49;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.judge-position {
    margin: 0 0 20px;
    color: #6c768c;
    font-size: 14px;
    line-height: 1.55;
}

.judge-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 64px;
    margin-bottom: 20px;
}

.judge-disciplines span {
    display: inline-flex;
    align-items: center;
    height: fit-content;
    padding: 8px 11px;
    color: #183466;
    background: #f0f3f8;
    border: 1px solid #e0e5ee;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.35px;
}

.judge-card-footer {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-top: 18px;
    border-top: 1px solid #e5e9f0;
}

.judge-card-footer span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #667187;
    font-size: 12px;
    line-height: 1.4;
}

.judge-card-footer i {
    width: 15px;
    color: #c41130;
}


/* Дополнительные судьи скрыты */

.additional-judge {
    display: none;
}

.additional-judge.is-visible {
    display: block;
    animation: showJudgeCard 0.5s ease forwards;
}

@keyframes showJudgeCard {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================================= */
/* КНОПКА VIEW ALL JUDGES */
/* ================================================= */

.judges-directory-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.judges-main-button {
    min-width: 235px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 27px;
    color: #ffffff;
    background: linear-gradient(135deg, #a90c29, #d8173c);
    border: none;
    border-radius: 50px;
    box-shadow: 0 14px 30px rgba(196, 17, 48, 0.24);
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.judges-main-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #8f0922, #c81034);
    box-shadow: 0 18px 38px rgba(196, 17, 48, 0.32);
}

.judges-main-button .button-icon {
    transition: transform 0.3s ease;
}

.judges-main-button.is-open .button-icon {
    transform: rotate(180deg);
}


/* ================================================= */
/* ОБУЧЕНИЕ СУДЕЙ */
/* ================================================= */

.judges-program {
    position: relative;
    padding-bottom: 105px;
    background:
        linear-gradient(
            180deg,
            #092b6f 0,
            #08265f 385px,
            #f3f5f9 385px,
            #f3f5f9 100%
        );
}

.judges-program-hero {
    min-height: 385px;
    padding: 78px 30px 125px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(196, 17, 48, 0.18), transparent 28%);
}

.judges-program-heading {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.judges-program-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 10px 17px;
    color: #ff718b;
    background: rgba(196, 17, 48, 0.08);
    border: 1px solid rgba(255, 86, 119, 0.48);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.45px;
}

.judges-program-heading h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.judges-program-heading p {
    max-width: 660px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.75;
}


/* Контент программы */

.judges-program-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: -98px auto 0;
    padding: 0 30px;
}

.judges-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.judges-program-card {
    position: relative;
    min-height: 285px;
    padding: 38px 24px 31px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(8, 35, 91, 0.09);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(6, 25, 66, 0.11);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.judges-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(6, 25, 66, 0.17);
}

.program-number {
    position: absolute;
    top: 18px;
    right: 19px;
    color: rgba(8, 35, 91, 0.08);
    font-size: 31px;
    font-weight: 900;
}

.judges-program-icon {
    width: 63px;
    height: 63px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #b20d2d, #e21b43);
    border-radius: 50%;
    box-shadow: 0 11px 24px rgba(196, 17, 48, 0.24);
    font-size: 22px;
}

.judges-program-card h3 {
    margin: 0 0 13px;
    color: #0a1d4c;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.judges-program-card p {
    margin: 0;
    color: #687287;
    font-size: 12px;
    line-height: 1.75;
}


/* ================================================= */
/* СТАТИСТИКА */
/* ================================================= */

.judges-statistics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(8, 35, 91, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(7, 27, 71, 0.08);
}

.judges-stat-item {
    position: relative;
    padding: 2px 20px;
    text-align: center;
}

.judges-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: 52px;
    background: #dfe4ec;
}

.judges-stat-item strong {
    display: block;
    margin-bottom: 5px;
    color: #c41130;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.judges-stat-item span {
    display: block;
    color: #737d90;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}


/* ================================================= */
/* КНОПКА ПОДАЧИ ЗАЯВКИ */
/* ================================================= */

.judges-program-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 36px;
    text-align: center;
}

.judges-apply-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 29px;
    color: #ffffff;
    background: linear-gradient(135deg, #ad0c2b, #df193f);
    border-radius: 50px;
    box-shadow: 0 15px 32px rgba(196, 17, 48, 0.25);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.25px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.judges-apply-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 19px 39px rgba(196, 17, 48, 0.34);
}

.judges-application-note {
    margin: 13px 0 0;
    color: #8992a3;
    font-size: 11px;
    line-height: 1.5;
}


/* ================================================= */
/* ПЛАНШЕТ */
/* ================================================= */

@media (max-width: 1050px) {

    .judges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .judges-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .judges-program-card {
        min-height: 260px;
    }
}


/* ================================================= */
/* МОБИЛЬНЫЕ УСТРОЙСТВА */
/* ================================================= */

@media (max-width: 700px) {

    .judges-title-bar {
        padding: 21px 15px;
    }

    .judges-title-bar-inner {
        gap: 11px;
    }

    .judges-title-line {
        width: 35px;
    }

    .judges-title-bar-text {
        flex-direction: column;
        gap: 2px;
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .judges-directory {
        padding: 67px 18px 75px;
    }

    .judges-section-heading {
        margin-bottom: 36px;
    }

    .judges-section-heading h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .judges-section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .judges-grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .judge-photo-wrapper {
        height: 390px;
    }

    .judge-card-content h3 {
        font-size: 23px;
    }

    .judges-program {
        background:
            linear-gradient(
                180deg,
                #092b6f 0,
                #08265f 410px,
                #f3f5f9 410px,
                #f3f5f9 100%
            );
    }

    .judges-program-hero {
        min-height: 410px;
        padding: 65px 20px 125px;
    }

    .judges-program-heading h2 {
        font-size: 38px;
        letter-spacing: -0.9px;
    }

    .judges-program-heading p {
        font-size: 14px;
    }

    .judges-program-content {
        margin-top: -88px;
        padding: 0 18px;
    }

    .judges-program-grid {
        grid-template-columns: 1fr;
    }

    .judges-program-card {
        min-height: auto;
        padding: 34px 25px;
    }

    .judges-statistics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 18px;
    }

    .judges-stat-item {
        padding: 21px 8px;
    }

    .judges-stat-item:not(:last-child)::after {
        display: none;
    }

    .judges-stat-item:nth-child(1),
    .judges-stat-item:nth-child(2) {
        border-bottom: 1px solid #e2e6ed;
    }

    .judges-stat-item:nth-child(odd) {
        border-right: 1px solid #e2e6ed;
    }

    .judges-stat-item strong {
        font-size: 30px;
    }

    .judges-apply-button {
        width: 100%;
        max-width: 330px;
    }
}


/* ================================================= */
/* ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ */
/* ================================================= */

@media (max-width: 430px) {

    .judge-photo-wrapper {
        height: 340px;
    }

    .judge-card-content {
        padding: 23px 20px;
    }

    .judge-featured-badge {
        left: 13px;
        bottom: 13px;
    }

    .judge-country {
        top: 13px;
        right: 13px;
    }
}

/* ===== Competitions section refresh ===== */

.featured-event__media {
    margin: -60px -56px 32px -56px;
    height: 240px;
    overflow: hidden;
    border-radius: 34px 34px 0 0;
}

.featured-event__media img,
.featured-event__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-event__eyebrow {
    color: #9a6b16;
}

.detail__label::before,
.featured-event__details .detail:first-child .detail__label::before,
.featured-event__details .detail:last-child .detail__label::before {
    content: none;
    margin-right: 0;
}

.featured-event__details {
    display: flex;
    gap: 28px;
}

.featured-event .detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Event detail pages (european-games.html etc.) reuse .detail without icon markup — keep stacked */
.event-hero .detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.event-hero .detail__label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9aa2b1;
}

.event-hero .detail__value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #07152f;
}

.competition-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(249,248,244,0.92));
    border: 1px solid rgba(214,177,106,0.16);
    box-shadow:
        0 18px 50px rgba(7,21,47,0.08),
        0 0 30px rgba(214,177,106,0.06);
}

.competition-card:hover {
    box-shadow:
        0 24px 60px rgba(7,21,47,0.12),
        0 0 40px rgba(214,177,106,0.10);
}

/* Stretch right column to match featured-event height, add card thumbnails */

.events-grid__wrapper {
    align-items: stretch;
}

.featured-event {
    display: flex;
    flex-direction: column;
}

.competitions {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.competitions__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.competition-card {
    display: flex;
    align-items: stretch;
    flex: 1;
    gap: 26px;
    padding: 24px;
}

.competition-card__media {
    position: relative;
    width: 160px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.competition-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.competition-card__media .competition-card__date {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 10px;
    background: rgba(7,21,47,0.78);
    border: none;
    backdrop-filter: blur(3px);
    z-index: 1;
}

.competition-card__media .competition-card__date .month {
    color: #fff;
    font-size: 0.72rem;
}

.competition-card__media .competition-card__date .day {
    color: #fff;
    font-size: 1.3rem;
}

.competition-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.competition-card__content h3 {
    font-size: 1.2rem;
}

.competition-card__desc {
    font-size: 0.86rem;
    line-height: 1.55;
    color: #6b7280;
    margin-bottom: 4px;
}

.competition-card .btn--small {
    align-self: center;
}

/* Trophy icon next to Competitions heading */
.competitions .section-title,
.events-grid .section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 0;
}

.competitions .section-title::before,
.events-grid .section-title::before {
    content: none;
}

.section-title__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b81025 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(192,18,45,0.30);
}

@media (max-width: 900px) {
    .competitions {
        height: auto;
    }

    .competitions__list {
        flex: none;
    }

    .competition-card {
        flex-direction: column;
    }

    .competition-card__media {
        width: 100%;
        height: 160px;
    }

    .competition-card .btn--small {
        align-self: flex-start;
    }
}

@media (max-width: 900px) {
    .featured-event__media {
        margin: -36px -28px 28px -28px;
        height: 190px;
        border-radius: 24px 24px 0 0;
    }
}