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

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #000;
    background: url('WhatsApp Image 2026-05-05 at 21.14.32.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-size: 16px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.45), rgba(5, 8, 16, 0.7));
    z-index: -1;
}

.site-watermark {
    position: fixed;
    right: 12px;
    bottom: 10px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(8, 14, 33, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    pointer-events: none;
    user-select: none;
    backdrop-filter: blur(2px);
}

.site-watermark img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.site-watermark span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: lowercase;
}

/* Theme tokens */
:root {
    --gold-1: #ffd44d;
    --gold-2: #f4c215;
    --ink-1: #0b1433;
    --ink-2: #121a3a;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.16);
    --ring: rgba(244, 194, 21, 0.35);
}

::selection {
    background: rgba(255, 213, 79, 0.35);
    color: #ffffff;
}

/* Top Bar with Admin Button */
.top-bar {
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px;
    z-index: 1000;
}

.logos-sidebar {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 132px;
    max-height: min(82vh, calc(100vh - 100px));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 900;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-sidebar h3 {
    color: #ffd54f;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.logos-sidebar::-webkit-scrollbar {
    display: none;
}

.logos-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Floating home promo (above watermark, fixed right) */
@keyframes homePromoCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes homePromoBorderGlow {
    0%, 100% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 213, 79, 0.35),
            0 0 28px rgba(255, 59, 48, 0.22);
    }
    50% {
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55),
            0 0 0 2px rgba(255, 107, 107, 0.55),
            0 0 36px rgba(255, 193, 7, 0.35);
    }
}

.home-promo-float {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(52px, env(safe-area-inset-bottom));
    z-index: 10050;
    width: min(210px, calc(100vw - 150px));
    max-width: 38vw;
    padding: 10px 10px 12px;
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(18, 28, 58, 0.96) 0%, rgba(8, 12, 32, 0.97) 45%, rgba(40, 12, 24, 0.35) 100%);
    border: 1px solid rgba(255, 213, 79, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 59, 48, 0.18);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    animation: homePromoCardFloat 3.2s ease-in-out infinite, homePromoBorderGlow 2.8s ease-in-out infinite;
}

.home-promo-float[hidden] {
    display: none !important;
}

@keyframes homePromoImgZoom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.06) rotate(-0.6deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.06) rotate(0.6deg);
    }
}

@keyframes homePromoBtnGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 68, 68, 0.5);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 12px 28px rgba(183, 28, 28, 0.45), 0 0 22px 4px rgba(255, 82, 82, 0.55);
    }
}

.home-promo-img-wrap {
    width: 100%;
    min-height: 72px;
    max-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    padding: 4px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    transition: background 0.2s ease, box-shadow 0.25s ease;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.12), transparent 65%);
}

.home-promo-img-wrap:hover,
.home-promo-img-wrap:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.home-promo-img-wrap img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    vertical-align: middle;
    animation: homePromoImgZoom 2.4s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45)) saturate(1.08);
}

.home-promo-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px 10px;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, #ff5252 0%, #e53935 45%, #c62828 100%);
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    box-sizing: border-box;
    animation: homePromoBtnGlow 1.9s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform, box-shadow;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.home-promo-cta:hover {
    filter: brightness(1.1);
    animation-play-state: paused;
    transform: scale(1.02);
}

/* Full-screen preview when tapping the floating image */
.home-promo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    background: rgba(4, 8, 18, 0.88);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
    box-sizing: border-box;
}

.home-promo-lightbox[hidden] {
    display: none !important;
}

@keyframes homePromoLightboxIn {
    from {
        transform: scale(0.9);
        opacity: 0.75;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.home-promo-lightbox-close {
    position: absolute;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    transition: background 0.15s ease;
}

.home-promo-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.home-promo-lightbox-inner {
    max-width: min(96vw, 960px);
    max-height: min(88vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.home-promo-lightbox-inner img {
    max-width: 100%;
    max-height: min(88vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    animation: homePromoLightboxIn 0.38s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
    .home-promo-float {
        animation: none;
    }

    .home-promo-img-wrap img,
    .home-promo-cta {
        animation: none;
    }

    .home-promo-lightbox-inner img {
        animation: none;
    }
}

/* Desktop / tablet: taller poster (mobile overrides below) */
@media (min-width: 769px) {
    .home-promo-img-wrap {
        max-height: 300px;
        min-height: 90px;
    }

    .home-promo-img-wrap img {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .home-promo-float {
        width: min(200px, calc(100vw - 20px));
        max-width: none;
        right: max(8px, env(safe-area-inset-right));
        bottom: max(48px, env(safe-area-inset-bottom));
    }

    .home-promo-img-wrap {
        max-height: 210px;
    }

    .home-promo-img-wrap img {
        max-height: 198px;
    }
}

/* Promo registration page (dynamic form) */
.promo-reg-body {
    min-height: 100vh;
    padding: 24px 16px 48px;
}

.promo-reg-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 14px;
    background: rgba(8, 14, 33, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.promo-reg-back a {
    color: var(--gold-1);
    text-decoration: none;
    font-weight: 700;
}

.promo-reg-back a:hover {
    text-decoration: underline;
}

.promo-reg-h1 {
    color: #ffff00;
    font-size: 26px;
    text-align: center;
    margin: 16px 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: promo-reg-title-in 0.65s ease both;
}

@keyframes promo-reg-title-in {
    from {
        opacity: 0;
        letter-spacing: 0.2em;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        letter-spacing: 0.5px;
        transform: translateY(0);
    }
}

.promo-reg-form .form-group {
    margin-bottom: 0;
}

.promo-reg-form .form-group label {
    color: #e8ecff;
}

.promo-reg-field {
    padding: 18px 2px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    animation: promo-reg-field-in 0.55s ease both;
}

.promo-reg-field:nth-child(1) {
    animation-delay: 0.04s;
}
.promo-reg-field:nth-child(2) {
    animation-delay: 0.09s;
}
.promo-reg-field:nth-child(3) {
    animation-delay: 0.14s;
}
.promo-reg-field:nth-child(4) {
    animation-delay: 0.19s;
}
.promo-reg-field:nth-child(5) {
    animation-delay: 0.24s;
}
.promo-reg-field:nth-child(6) {
    animation-delay: 0.29s;
}
.promo-reg-field:nth-child(7) {
    animation-delay: 0.34s;
}
.promo-reg-field:nth-child(8) {
    animation-delay: 0.39s;
}
.promo-reg-field:nth-child(9) {
    animation-delay: 0.44s;
}
.promo-reg-field:nth-child(10) {
    animation-delay: 0.49s;
}
.promo-reg-field:nth-child(11) {
    animation-delay: 0.54s;
}
.promo-reg-field:nth-child(12) {
    animation-delay: 0.59s;
}

@keyframes promo-reg-field-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-reg-q-label,
.promo-reg-form .promo-reg-q-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #9ee7ff;
    text-shadow: 0 0 18px rgba(110, 210, 255, 0.25);
}

.promo-reg-form input:not([type='radio']),
.promo-reg-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    -webkit-text-fill-color: #111111;
    caret-color: #111111;
    color-scheme: light;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.18s ease,
        background-color 0.22s ease;
}

/* Later stylesheets (e.g. ttid-styles) set light text on .form-group inputs — force readable typing colour here. */
.promo-reg-body .promo-reg-form .form-group input:not([type='radio']),
.promo-reg-body .promo-reg-form .form-group textarea {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    caret-color: #111111 !important;
}

.promo-reg-body .promo-reg-form .form-group input:not([type='radio']):-webkit-autofill,
.promo-reg-body .promo-reg-form .form-group input:not([type='radio']):-webkit-autofill:hover,
.promo-reg-body .promo-reg-form .form-group input:not([type='radio']):-webkit-autofill:focus {
    -webkit-text-fill-color: #111111 !important;
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.94) inset !important;
    transition: background-color 99999s ease-out 0s;
}

.promo-reg-form textarea {
    min-height: 100px;
    resize: vertical;
}

.promo-reg-form input:not([type='radio']):hover,
.promo-reg-form textarea:hover {
    border-color: rgba(158, 231, 255, 0.55);
}

.promo-reg-form input:not([type='radio']):focus,
.promo-reg-form textarea:focus {
    outline: none;
    border-color: var(--gold-2, #e6c200);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
    background: #fff;
}

.promo-reg-actions {
    margin-top: 8px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: promo-reg-field-in 0.55s ease 0.35s both;
}

.promo-reg-actions .primary-btn {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.promo-reg-actions .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.promo-reg-actions .primary-btn:active {
    transform: translateY(0);
}

.promo-reg-closed {
    color: #ffb4b4;
    text-align: center;
    font-size: 17px;
    margin: 24px 0;
}

.promo-reg-msg {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.promo-reg-msg.promo-reg-success {
    background: rgba(46, 125, 50, 0.35);
    color: #c8ffc8;
    border: 1px solid rgba(129, 199, 132, 0.5);
}

.promo-reg-msg.promo-reg-error {
    background: rgba(183, 28, 28, 0.35);
    color: #ffcdd2;
    border: 1px solid rgba(239, 83, 80, 0.45);
}

.promo-choice-group .promo-choice-q {
    margin-bottom: 12px;
}

.promo-choice-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.promo-choice-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: start;
    cursor: pointer;
    color: #e8ecff;
    line-height: 1.45;
    padding: 8px 10px;
    margin: 0 -6px;
    border-radius: 10px;
    transition:
        background-color 0.2s ease,
        transform 0.18s ease;
}

.promo-choice-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.promo-choice-item:active {
    transform: scale(0.99);
}

.promo-choice-item input[type='radio'] {
    margin: 0;
    margin-top: 0.32em;
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
    accent-color: var(--gold-2, #e6c200);
    cursor: pointer;
}

.promo-choice-text {
    padding-top: 0.06em;
}

/* Success celebration (promo-registration.html) */
.promo-celebration-layer {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    overflow: hidden;
}

.promo-celebration-layer[hidden] {
    display: none !important;
}

.promo-confetti-bit {
    position: absolute;
    top: -16px;
    width: 10px;
    height: 14px;
    border-radius: 2px;
    opacity: 0.95;
    animation: promo-confetti-drop linear forwards;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
}

@keyframes promo-confetti-drop {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(var(--drift, 0px)) rotate(var(--spin, 360deg));
        opacity: 0.88;
    }
}

.promo-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 10, 30, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.promo-success-overlay:not([hidden]) {
    display: flex;
    animation: promo-overlay-in 0.4s ease both;
}

.promo-success-overlay[hidden] {
    display: none !important;
}

@keyframes promo-overlay-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.promo-success-dialog {
    position: relative;
    max-width: 420px;
    width: 100%;
    padding: 34px 28px 28px;
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(22, 38, 72, 0.98), rgba(10, 20, 44, 0.98));
    border: 1px solid rgba(255, 221, 102, 0.5);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 215, 0, 0.28),
        0 0 40px rgba(110, 231, 255, 0.15);
    text-align: center;
    animation: promo-dialog-pop 0.6s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

@keyframes promo-dialog-pop {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(16px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.promo-success-glow {
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 221, 102, 0.45), transparent 58%);
    pointer-events: none;
    z-index: 0;
    animation: promo-glow-pulse 2.2s ease-in-out infinite;
    filter: blur(14px);
    opacity: 0.85;
}

@keyframes promo-glow-pulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.promo-success-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    line-height: 64px;
    font-size: 34px;
    font-weight: 800;
    color: #0b1433;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffeb7a, #f4c215);
    box-shadow:
        0 0 24px rgba(255, 221, 102, 0.75),
        0 0 48px rgba(255, 200, 50, 0.35);
    animation: promo-success-icon-in 0.7s cubic-bezier(0.34, 1.55, 0.64, 1) 0.12s both;
}

@keyframes promo-success-icon-in {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.promo-success-title {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff8e7;
    text-shadow: 0 0 28px rgba(255, 221, 102, 0.45);
    letter-spacing: 0.03em;
}

.promo-success-text {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 236, 255, 0.92);
}

.promo-success-close {
    position: relative;
    z-index: 1;
    min-width: 120px;
    animation: promo-success-btn-glow 2.5s ease-in-out infinite;
}

@keyframes promo-success-btn-glow {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }
    50% {
        box-shadow:
            0 4px 28px rgba(0, 0, 0, 0.3),
            0 0 24px rgba(255, 221, 102, 0.55);
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-confetti-bit {
        animation-duration: 1.2s !important;
    }

    .promo-success-dialog,
    .promo-success-icon,
    .promo-success-overlay:not([hidden]) {
        animation: none !important;
    }

    .promo-success-glow {
        animation: none;
        opacity: 0.5;
    }

    .promo-success-close {
        animation: none;
    }
}

.admin-btn {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--ink-1);
    border: 0;
    padding: 10px 16px;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 800;
    border-radius: 10px;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.25);
    transform: translateZ(0);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.admin-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.32);
}

.admin-btn:active {
    transform: translateY(0) scale(0.98);
}

.admin-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--ring), 0 14px 24px rgba(0,0,0,0.32);
}

/* Home page: admin entry is invisible and does not reveal on hover/focus. */
.admin-hit-zone {
    position: fixed;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    padding: 0;
    margin: 0;
    border: 0;
    opacity: 0;
    background: transparent !important;
    cursor: default;
    z-index: 100;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.admin-hit-zone:hover,
.admin-hit-zone:focus,
.admin-hit-zone:focus-visible,
.admin-hit-zone:active {
    opacity: 0 !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
}

/* Main Container */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 20px 20px 150px;
    padding-top: 60px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 0 auto 14px;
    padding: 10px 0 0;
    max-width: 980px;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffff00;
    margin: 0 auto 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.12;
    max-width: 100%;
    white-space: nowrap;
}

.hero-title-line {
    display: inline;
}

.hero-title-line--1::after {
    content: ' ';
}

.hero-title-line--2 {
    letter-spacing: 1.4px;
}

.hero-lines {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

/* Match TELANGANA TAEKWONDO ASSOCIATION (.hero h1) — #ffff00 */
.hero-affiliated,
.hero-recognised {
    color: #ffff00;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

/* People Section */
.people-section {
    margin-bottom: 16px;
    padding: 20px 0;
}

.home-slider-section {
    margin: 0 auto 26px;
    max-width: 980px;
}

.home-slider {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.2);
    transition: height 260ms ease;
}

.home-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 520ms ease;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.35);
}

/* Logos Section */
.logos-section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.logos-section h2 {
    text-align: center;
    font-size: 28px;
    color: #ffff00;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* Add animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-in {
    animation: slideIn 0.5s ease-in-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.logo-item {
    text-align: center;
    padding: 4px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatSoft 4s ease-in-out infinite;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.logo-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.25);
}

.home-buttons-container {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.dynamic-home-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.home-button-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(100%, 300px);
    min-width: 240px;
}

.home-button-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 10px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.home-extra-btn {
    min-width: 220px;
}


.people-section h2 {
    text-align: center;
    font-size: 28px;
    color: #ffff00;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 300px));
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.person-card {
    text-align: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(10, 22, 48, 0.62);
    border-radius: 14px;
    backdrop-filter: blur(5px);
    min-width: 200px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.person-card:hover {
    transform: translateY(-5px);
}

.person-image {
    width: 139px;
    height: 139px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 2px solid #000;
    object-fit: cover;
}

.person-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.person-designation {
    font-size: 16px;
    color: #e8f0ff;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* TTID Section */
.ttid-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.ttid-section h2 {
    font-size: 24px;
    color: #ffff00;
    margin-bottom: 10px;
    font-weight: bold;
}

.ttid-section p {
    font-size: 16px;
    color: #ffff00;
    margin-bottom: 20px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--ink-1);
    border: 0;
    padding: 12px 32px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    letter-spacing: 0.6px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.25);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    position: relative;
    overflow: hidden;
}

.primary-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(0,0,0,0.32);
}

.primary-btn:active {
    transform: translateY(0) scale(0.98);
}

.primary-btn::after {
    content: "";
    position: absolute;
    inset: -20% -30%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-120%) rotate(10deg);
    transition: transform 600ms ease;
}

.primary-btn:hover::after {
    transform: translateX(120%) rotate(10deg);
}

.primary-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--ring), 0 20px 38px rgba(0,0,0,0.32);
}

/* Info Grid */
.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    border: none;
    background: transparent;
    min-width: 250px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.info-card:hover {
    background: #f5f5f5;
}

/* Action Grid */
.action-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.action-card {
    text-align: center;
    padding: 30px 20px;
    border: none;
    background: transparent;
    min-width: 250px;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.action-card h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.action-card p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border: 0;
    border-radius: 14px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.modal-content h3 {
    color: #000;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.modal-content p {
    margin-bottom: 10px;
    color: #333;
}

.modal-content strong {
    color: #000;
}

.close-btn {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--ink-1);
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    transition: transform 160ms ease, filter 160ms ease;
}

.close-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.close-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.92);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-2);
    box-shadow: 0 0 0 3px var(--ring);
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions button {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.form-actions button:hover {
    background: #333;
}

/* Anti-Doping Cards */
.anti-doping-card {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.empty-text {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        padding-top: 60px;
    }

    .logos-sidebar {
        position: static;
        top: auto;
        transform: none;
        width: 100%;
        max-height: none;
        margin: 14px auto 18px;
        display: block;
    }

    .logos-stack {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .hero-title {
        font-size: clamp(20px, 5.8vw, 28px);
        letter-spacing: 0.35px;
        line-height: 1.15;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }

    .hero-title-line {
        display: block;
    }

    .hero-title-line--1::after {
        content: none;
    }

    .hero-title-line--1 {
        font-size: 1em;
    }

    .hero-title-line--2 {
        font-size: 0.95em;
        margin-top: 2px;
    }
    
    .hero-lines {
        font-size: 16px;
        line-height: 1.08;
    }
    
    .people-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .home-slider {
        height: 250px;
    }

    .home-button-card {
        width: 100%;
    }

    .home-button-logo {
        width: 90px;
        height: 90px;
    }

    .person-card {
        width: 100%;
        max-width: 320px;
    }
    
    .info-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }

    .site-watermark {
        right: max(8px, env(safe-area-inset-right));
        bottom: max(8px, env(safe-area-inset-bottom));
        padding: 6px 8px;
    }

    .site-watermark img {
        width: 20px;
        height: 20px;
    }

    .site-watermark span {
        font-size: 11px;
    }
}
