:root {
    --sky: #1a90bb;
    --sky-light: #4dbee0;
    --sky-dim: #0d5f7e;
    --night: #070d12;
    --night-2: #0c1820;
    --night-3: #111e28;
    --silver: #b0bec5;
    --silver-light: #ecf0f2;
    --glass-bg: rgba(26, 144, 187, 0.08);
    --glass-border: rgba(26, 144, 187, 0.25);
    --ok: #2dd4a0;
    --err: #ff6b6b;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.register-template-page {
    font-family: 'DM Sans', sans-serif;
    background: var(--night);
    color: var(--silver-light);
    overflow-x: hidden;
}

body.register-template-page.no-scroll {
    overflow: hidden;
}

#evt-canvas-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.evt-page {
    position: relative;
    z-index: 1;
}

/* ─── NAV ───────────────────────────────────────── */
.evt-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5%;
    background: rgba(7, 13, 18, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 144, 187, 0.12);
}

.evt-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.evt-nav-logo img {
    height: 38px;
    width: auto;
}

.evt-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.evt-nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color var(--transition);
}

.evt-nav-links a:hover {
    color: var(--sky-light);
}

.evt-nav-cta {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--sky);
    color: var(--sky-light);
    text-decoration: none;
    transition: all var(--transition);
    border-radius: 2px;
}

.evt-nav-cta:hover {
    background: var(--sky);
    color: #fff;
}

.evt-mobile-btn {
    display: none;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--silver-light);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

.evt-mobile-menu {
    display: none;
}

@media (max-width: 860px) {
    .evt-nav-links,
    .evt-nav-cta {
        display: none;
    }

    .evt-mobile-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .evt-mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 95;
        background: rgba(7, 13, 18, 0.97);
        border-bottom: 1px solid rgba(26, 144, 187, 0.15);
        padding: 14px 5%;
        flex-direction: column;
        gap: 10px;
    }

    .evt-mobile-menu.open {
        display: flex;
    }

    .evt-mobile-menu a {
        font-family: 'Rajdhani', sans-serif;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--silver-light);
        text-decoration: none;
        padding: 10px 0;
    }
}

/* ─── HERO ───────────────────────────────────────── */
.evt-hero {
    min-height: 84vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 5% 40px;
}

.evt-overline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 24px;
    animation: evtFadeUp 0.8s 0.2s both;
}

.evt-hero-logo {
    height: 74px;
    width: auto;
    margin-bottom: 34px;
    filter: drop-shadow(0 0 30px rgba(26, 144, 187, 0.42));
    animation: evtFadeUp 0.8s 0.4s both;
}

.evt-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--sky-light) 60%, var(--sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: evtFadeUp 0.8s 0.5s both;
}

.evt-hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--silver);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: evtFadeUp 0.8s 0.7s both;
}

.evt-countdown-wrap {
    margin-bottom: 54px;
    animation: evtFadeUp 0.8s 0.9s both;
}

.evt-countdown-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 14px;
}

.evt-countdown {
    display: flex;
    gap: clamp(14px, 3vw, 34px);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.evt-count-block {
    min-width: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.evt-count-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 14px 20px;
    min-width: 86px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.evt-count-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.evt-count-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky);
}

.evt-count-sep {
    font-family: 'Rajdhani', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--sky-dim);
    margin-top: -8px;
}

.evt-countdown-expired {
    margin-top: 12px;
    font-size: 14px;
    color: #d8eef8;
}

.evt-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 40px;
    background: var(--sky);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    animation: evtFadeUp 0.8s 1.1s both;
}

.evt-hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.evt-hero-cta:hover::before {
    transform: translateX(100%);
}

.evt-hero-cta:hover {
    background: var(--sky-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(26, 144, 187, 0.4);
}

.evt-scroll-hint {
    margin-top: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    animation: evtFadeUp 1s 1.4s both;
}

.evt-scroll-hint span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
}

.evt-scroll-mouse {
    width: 20px;
    height: 34px;
    border: 1.5px solid var(--silver);
    border-radius: 12px;
    position: relative;
}

.evt-scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--sky-light);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: evtScrollDot 1.6s infinite;
}

/* ─── SECTION BASE ─────────────────────────────────── */
.evt-section {
    position: relative;
    z-index: 1;
    padding: 70px 5%;
}

.evt-section-inner {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(17, 30, 40, 0.94) 0%, rgba(12, 24, 32, 0.96) 100%);
    border: 1px solid rgba(26, 144, 187, 0.25);
    border-radius: 18px;
    padding: clamp(24px, 4vw, 46px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.evt-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.evt-reveal.visible {
    opacity: 1;
    transform: none;
}

.evt-alert {
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.evt-alert-success {
    background: rgba(45, 212, 160, 0.14);
    border: 1px solid rgba(45, 212, 160, 0.45);
    color: #d5fff1;
}

.evt-alert-error {
    background: rgba(255, 107, 107, 0.16);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ffe6e6;
}

.evt-alert h3 {
    margin-bottom: 6px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.evt-register-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

@media (max-width: 1040px) {
    .evt-register-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── FORM ─────────────────────────────────────────── */
.evt-form-container {
    background: rgba(8, 14, 20, 0.7);
    border: 1px solid rgba(26, 144, 187, 0.22);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 30px);
}

.evt-form-header .evt-section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 6px;
}

.evt-form-header .evt-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: #f4fbff !important;
}

.evt-form-header p {
    color: var(--silver);
    font-size: 15px;
    margin-bottom: 20px;
}

.evt-form {
    display: block;
}

.evt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

@media (max-width: 720px) {
    .evt-form-row {
        grid-template-columns: 1fr;
        margin-bottom: 10px;
    }
}

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

.evt-form-group.evt-full {
    grid-column: 1 / -1;
}

.evt-form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver-light);
}

.evt-form-group input,
.evt-form-group select,
.evt-form-group textarea {
    width: 100%;
    border: 1px solid rgba(176, 190, 197, 0.32);
    background: rgba(17, 30, 40, 0.65);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    padding: 12px 13px;
    transition: all var(--transition);
}

.evt-form-group input::placeholder,
.evt-form-group textarea::placeholder {
    color: rgba(176, 190, 197, 0.75);
}

.evt-form-group input:focus,
.evt-form-group select:focus,
.evt-form-group textarea:focus {
    outline: none;
    border-color: var(--sky-light);
    box-shadow: 0 0 0 3px rgba(26, 144, 187, 0.2);
}

.evt-error-msg {
    display: none;
    color: #ffb3b3;
    font-size: 12px;
}

.evt-input-error {
    border-color: var(--err) !important;
}

.evt-req {
    color: #fca5a5;
}

.evt-form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 144, 187, 0.4) 50%, transparent 100%);
    margin: 20px 0;
}

/* Demo toggle */
.evt-demo-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(77, 190, 224, 0.4);
    background:
        linear-gradient(135deg, rgba(26, 144, 187, 0.18), rgba(7, 16, 24, 0.92)),
        radial-gradient(circle at top right, rgba(77, 190, 224, 0.18), transparent 40%);
    border-radius: 16px;
    padding: 18px 18px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.evt-demo-toggle:hover {
    border-color: var(--sky);
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(3, 10, 18, 0.28);
}

.evt-demo-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.evt-demo-toggle:hover::before {
    transform: translateX(100%);
}

.evt-demo-toggle-copy,
.evt-demo-toggle-action {
    position: relative;
    z-index: 1;
}

.evt-demo-toggle-copy {
    flex: 1;
}

.evt-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(216, 238, 248, 0.22);
    background: rgba(216, 238, 248, 0.08);
    color: #f4fbff;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 700;
}

.evt-demo-toggle h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.05;
    color: #f7fcff;
}

.evt-demo-toggle h4 i {
    color: var(--sky-light);
    margin-right: 10px;
}

.evt-demo-toggle p {
    color: #d7e8f0;
    font-size: 14px;
    line-height: 1.55;
    max-width: 640px;
}

.evt-demo-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.evt-demo-steps span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(8, 18, 26, 0.7);
    border: 1px solid rgba(216, 238, 248, 0.14);
    color: #d8eef8;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.evt-demo-toggle-action {
    min-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.evt-demo-toggle-state {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d8eef8;
}

.evt-demo-toggle-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 238, 248, 0.18);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-align: center;
}

.evt-toggle-switch {
    width: 52px;
    height: 30px;
    background: rgba(17, 30, 40, 0.8);
    border: 1px solid rgba(176, 190, 197, 0.35);
    border-radius: 999px;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition);
}

.evt-toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--silver-light);
    top: 3px;
    left: 3px;
    transition: transform var(--transition);
}

.evt-toggle-switch.active {
    background: rgba(26, 144, 187, 0.38);
    border-color: var(--sky);
}

.evt-toggle-switch.active::after {
    transform: translateX(22px);
}

.evt-demo-toggle.demo-open {
    border-color: rgba(77, 190, 224, 0.72);
    box-shadow: 0 0 0 2px rgba(26, 144, 187, 0.18), 0 20px 42px rgba(2, 10, 18, 0.32);
}

.evt-demo-toggle.demo-open .evt-demo-toggle-cta {
    background: linear-gradient(135deg, rgba(26, 144, 187, 0.88), rgba(77, 190, 224, 0.64));
    border-color: rgba(77, 190, 224, 0.6);
}

.evt-demo-toggle.demo-open .evt-demo-toggle-state {
    color: #9ef0bf;
}

.evt-demo-options {
    display: none;
    margin-top: 16px;
}

.evt-demo-options.open {
    display: block;
}

.evt-demo-options-label {
    margin-bottom: 12px;
}

/* Aircraft cards */
.evt-aircraft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

@media (max-width: 920px) {
    .evt-aircraft-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .evt-demo-toggle {
        flex-direction: column;
        align-items: stretch;
    }

    .evt-demo-toggle h4 {
        font-size: 22px;
    }

    .evt-demo-toggle-action {
        min-width: 0;
        align-items: stretch;
    }

    .evt-demo-toggle-cta {
        width: 100%;
    }

    .evt-toggle-switch {
        align-self: flex-end;
    }
}

.evt-aircraft-option {
    border: 1px solid rgba(176, 190, 197, 0.28);
    border-radius: 12px;
    background: rgba(17, 30, 40, 0.65);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.evt-aircraft-option:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 190, 224, 0.7);
}

.evt-aircraft-option.selected {
    border-color: var(--sky);
    box-shadow: 0 0 0 2px rgba(26, 144, 187, 0.35);
}

.evt-aircraft-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.evt-check-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(7, 13, 18, 0.7);
    border: 1px solid rgba(176, 190, 197, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    z-index: 2;
}

.evt-aircraft-option.selected .evt-check-overlay {
    color: #fff;
    border-color: var(--sky);
    background: rgba(26, 144, 187, 0.9);
}

.evt-aircraft-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #061018;
}

.evt-aircraft-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}

.evt-aircraft-option:hover .evt-aircraft-main img {
    transform: scale(1.04);
}

.evt-aircraft-body {
    padding: 14px 14px 12px;
}

.evt-aircraft-body h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    margin-bottom: 8px;
    color: #f6fbff;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.evt-aircraft-body p {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.55;
}

.evt-aircraft-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.evt-aircraft-thumb {
    border: 1px solid rgba(176, 190, 197, 0.36);
    background: rgba(17, 30, 40, 0.8);
    color: var(--silver-light);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    cursor: pointer;
    transition: all var(--transition);
}

.evt-aircraft-thumb.active {
    border-color: var(--sky);
    color: #fff;
}

.evt-aircraft-thumb:hover {
    border-color: var(--sky-light);
}

.evt-queue-info {
    border: 1px dashed rgba(77, 190, 224, 0.5);
    background: rgba(26, 144, 187, 0.08);
    color: #d8eef8;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.5;
}

.evt-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 900px) {
    .evt-slots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .evt-slots-grid {
        grid-template-columns: 1fr;
    }
}

.evt-slot-card {
    position: relative;
}

.evt-slot-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.evt-slot-card label {
    display: block;
    border: 1px solid rgba(176, 190, 197, 0.3);
    background: rgba(17, 30, 40, 0.72);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition);
}

.evt-slot-card label strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
    color: #fff;
}

.evt-slot-card label small {
    color: var(--silver);
    font-size: 12px;
}

.evt-slot-card input[type="radio"]:checked + label {
    border-color: var(--sky);
    box-shadow: 0 0 0 2px rgba(26, 144, 187, 0.35);
}

.evt-slot-empty,
.evt-slot-loading,
.evt-slot-error {
    font-size: 14px;
    color: var(--silver);
    margin: 4px 0;
}

.evt-slot-error {
    color: #ffd2d2;
}

/* Privacy and submit */
.evt-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--silver);
}

.evt-privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--sky);
}

.evt-privacy-check a {
    color: #d8eef8;
}

.evt-submit-btn {
    width: 100%;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 24px;
    background: var(--sky);
    color: #fff;
    border-radius: 2px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.evt-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.evt-submit-btn:hover::before {
    transform: translateX(100%);
}

.evt-submit-btn:hover {
    background: var(--sky-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(26, 144, 187, 0.45);
}

.evt-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* departure box */
.evt-departure-box {
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(26, 144, 187, 0.18), rgba(12, 24, 32, 0.92));
    border: 1px solid rgba(77, 190, 224, 0.4);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.evt-departure-head h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
    color: #f4fbff !important;
    margin-bottom: 4px;
}

.evt-departure-head p {
    color: #d5e8f0;
    font-size: 14px;
}

.evt-departure-btn {
    width: auto;
    min-width: 220px;
    margin-top: 0;
}

@media (max-width: 760px) {
    .evt-departure-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .evt-departure-btn {
        width: 100%;
    }

    .evt-aircraft-body h5 {
        font-size: 21px;
    }
}

/* side cards */
.evt-side-card {
    background: rgba(8, 14, 20, 0.7);
    border: 1px solid rgba(26, 144, 187, 0.22);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.evt-side-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #f4fbff !important;
}

.evt-side-card p {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.6;
}

.evt-side-list {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.evt-side-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--silver-light);
}

.evt-side-list i {
    color: var(--sky);
    margin-top: 2px;
}

.evt-side-btn {
    margin-top: 12px;
    width: 100%;
    border: 1px solid var(--sky);
    background: transparent;
    color: var(--sky-light);
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 14px;
    transition: all var(--transition);
}

.evt-side-btn:hover {
    background: var(--sky);
    color: #fff;
}

.evt-access-box {
    margin-top: 18px;
}

.evt-weather-box {
    margin-top: 0;
}

/* info footer */
.evt-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 950px) {
    .evt-info-grid {
        grid-template-columns: 1fr;
    }
}

.evt-info-column h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(30px, 4vw, 40px);
    margin-bottom: 16px;
    color: #f4fbff !important;
}

.evt-min-list {
    display: grid;
    gap: 12px;
}

.evt-min-item {
    border: 1px solid rgba(26, 144, 187, 0.18);
    background: rgba(8, 14, 20, 0.42);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.evt-min-item i {
    color: var(--sky-light);
    margin-top: 3px;
}

.evt-min-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    margin-bottom: 2px;
}

.evt-min-item p {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.45;
}

/* details single box */
.evt-details-box {
    background: rgba(8, 14, 20, 0.68);
    border: 1px solid rgba(26, 144, 187, 0.28);
    border-radius: 14px;
    padding: clamp(18px, 3vw, 28px);
}

.evt-details-box h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(30px, 4vw, 40px);
    margin-bottom: 14px;
    color: #f4fbff !important;
}

.evt-details-content p {
    margin: 0 0 10px;
    color: #d7e8ef;
    line-height: 1.6;
    font-size: 15px;
}

.evt-details-content p strong {
    color: #f4fbff;
}

.evt-details-content h3 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 27px;
    color: #f4fbff !important;
}

.evt-details-content ul {
    margin-left: 18px;
    color: #d7e8ef;
    display: grid;
    gap: 8px;
}

/* footer */
.evt-footer {
    position: relative;
    z-index: 1;
    padding: 22px 5% 32px;
    text-align: center;
    color: var(--silver);
}

.evt-footer img {
    height: 26px;
    width: auto;
    margin-bottom: 10px;
}

/* image lightbox */
.evt-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
}

.evt-image-lightbox.open {
    display: block;
}

.evt-image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 13, 18, 0.85);
}

.evt-image-lightbox-content {
    position: relative;
    z-index: 2;
    width: min(960px, 92vw);
    margin: 5vh auto;
    border: 1px solid rgba(26, 144, 187, 0.4);
    border-radius: 14px;
    overflow: hidden;
    background: #071019;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.evt-image-lightbox-content img {
    display: block;
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    background: #03070c;
}

.evt-image-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(7, 13, 18, 0.85);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* Departures modal */
.evt-flight-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2300;
}

.evt-flight-modal.open {
    display: block;
}

.evt-flight-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

.evt-flight-modal-content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 30px auto;
    padding: 0 16px 30px;
}

.evt-flight-modal-close {
    position: absolute;
    top: -10px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
}

.evt-airport-board {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 8px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.evt-board-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.evt-plane-icon {
    width: min(100%, 340px);
    height: 92px;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
}

.evt-plane-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .evt-plane-icon {
        height: 72px;
    }
}

.evt-board-title {
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.evt-column-headers {
    display: grid;
    grid-template-columns: 80px 280px 120px 80px 150px;
    gap: 15px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.evt-column-header {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.evt-flights-container {
    background: #000;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.evt-flight-row {
    display: grid;
    grid-template-columns: 80px 280px 120px 80px 150px;
    gap: 15px;
    margin-bottom: 12px;
    animation: evtSlideIn 0.5s ease-out;
}

.evt-flip-cell {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    padding: 8px 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.evt-flip-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
    z-index: 2;
}

.evt-flip-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 3;
}

.evt-flip-content {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4), 0 0 12px rgba(255, 255, 255, 0.2);
}

.evt-flip-content.animating {
    animation: evtFlip 0.6s ease-in-out;
}

.status-on-time {
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.status-delayed {
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

.status-boarding {
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.8);
    animation: evtBlink 1.5s infinite;
}

.evt-no-flights {
    color: #cbd5f5;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 1024px) {
    .evt-column-headers,
    .evt-flight-row {
        grid-template-columns: 70px 200px 100px 70px 120px;
        gap: 10px;
    }

    .evt-flip-content {
        font-size: 0.9rem;
    }

    .evt-board-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .evt-airport-board {
        padding: 20px;
    }

    .evt-column-headers {
        display: none;
    }

    .evt-flight-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    .evt-flip-cell {
        margin-top: 25px;
    }

    .evt-flip-cell::before {
        content: attr(data-label);
        position: absolute;
        top: -20px;
        left: 0;
        font-size: 0.65rem;
        color: #ffffff;
        font-weight: bold;
        background: none;
        height: auto;
    }
}

/* Weather modal */
.evt-weather-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2350;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 14px 0;
}

.evt-weather-modal.open {
    display: block;
}

.evt-weather-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.72);
}

.evt-weather-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(980px, calc(100vw - 14px));
    margin: 0 auto;
    padding: 0 8px 18px;
}

.evt-weather-close {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
}

.evt-weather-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 8%, rgba(56, 150, 198, 0.24) 0%, transparent 30%),
        linear-gradient(155deg, rgba(4, 14, 27, 0.98) 0%, rgba(8, 24, 40, 0.98) 52%, rgba(11, 31, 49, 0.96) 100%);
    border: 1px solid rgba(77, 190, 224, 0.36);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 22px 52px rgba(2, 8, 23, 0.65);
    max-width: 100%;
}

.evt-weather-card::before {
    content: '';
    position: absolute;
    left: -80px;
    right: -80px;
    top: 96px;
    height: 24px;
    background:
        linear-gradient(90deg,
            transparent 0,
            transparent 8%,
            rgba(255, 255, 255, 0.75) 8%,
            rgba(255, 255, 255, 0.75) 12%,
            transparent 12%,
            transparent 20%,
            rgba(255, 255, 255, 0.75) 20%,
            rgba(255, 255, 255, 0.75) 24%,
            transparent 24%,
            transparent 32%,
            rgba(255, 255, 255, 0.75) 32%,
            rgba(255, 255, 255, 0.75) 36%,
            transparent 36%,
            transparent 44%,
            rgba(255, 255, 255, 0.75) 44%,
            rgba(255, 255, 255, 0.75) 48%,
            transparent 48%,
            transparent 56%,
            rgba(255, 255, 255, 0.75) 56%,
            rgba(255, 255, 255, 0.75) 60%,
            transparent 60%,
            transparent 68%,
            rgba(255, 255, 255, 0.75) 68%,
            rgba(255, 255, 255, 0.75) 72%,
            transparent 72%,
            transparent 80%,
            rgba(255, 255, 255, 0.75) 80%,
            rgba(255, 255, 255, 0.75) 84%,
            transparent 84%,
            transparent 92%,
            rgba(255, 255, 255, 0.75) 92%,
            rgba(255, 255, 255, 0.75) 96%,
            transparent 96%,
            transparent 100%);
    opacity: 0.16;
    pointer-events: none;
}

.evt-weather-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.evt-weather-head h3 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #f4fbff;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.evt-weather-head p {
    margin: 4px 0 0;
    color: #c5deea;
    font-size: 14px;
    letter-spacing: .5px;
}

.evt-weather-refresh {
    border: 1px solid rgba(77, 190, 224, 0.42);
    background: linear-gradient(180deg, rgba(12, 24, 32, 0.9) 0%, rgba(6, 16, 26, 0.96) 100%);
    color: #c6f2ff;
    border-radius: 999px;
    padding: 10px 15px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.evt-weather-refresh:hover {
    background: rgba(26, 144, 187, 0.35);
}

.evt-weather-loading {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2e8f3;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.evt-weather-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.evt-atis-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 2px;
}

.evt-atis-strip span {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(77, 190, 224, 0.26);
    background: rgba(6, 14, 22, 0.66);
    color: #a8ccdd;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.evt-atis-pill {
    color: #e0f6ff !important;
    border-color: rgba(74, 222, 128, 0.45) !important;
    background: rgba(22, 163, 74, 0.15) !important;
    font-weight: 700;
}

.evt-atis-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #5effa4;
    box-shadow: 0 0 12px rgba(94, 255, 164, 0.75);
    margin-right: 6px;
    animation: evtPulseDot 1.6s ease-in-out infinite;
}

.evt-weather-main {
    background: rgba(6, 14, 22, 0.82);
    border: 1px solid rgba(77, 190, 224, 0.26);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.evt-weather-main-left {
    display: grid;
    gap: 6px;
}

.evt-weather-main strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 38px;
    color: #f3fbff;
    letter-spacing: 1.2px;
    line-height: 1;
}

.evt-weather-main strong .evt-main-icon {
    font-size: 28px;
    vertical-align: middle;
}

.evt-weather-main span {
    color: #bcdae9;
    font-size: 14px;
}

.evt-weather-call {
    font-size: 11px;
    color: #8fb9cb;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.evt-weather-main-right {
    display: grid;
    justify-items: end;
    gap: 5px;
    text-align: right;
}

.evt-weather-main-right span {
    font-size: 13px;
    color: #9fd7ea;
}

.evt-weather-main-right small {
    font-size: 12px;
    color: #8fb9cb;
}

.evt-weather-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    border-radius: 999px;
    padding: 5px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.2px;
    border: 1px solid;
}

.evt-weather-badge.vfr {
    color: #d4ffe9;
    background: rgba(22, 163, 74, 0.24);
    border-color: rgba(74, 222, 128, 0.55);
}

.evt-weather-badge.mvfr {
    color: #eff8ff;
    background: rgba(37, 99, 235, 0.24);
    border-color: rgba(96, 165, 250, 0.55);
}

.evt-weather-badge.ifr {
    color: #fff3d7;
    background: rgba(217, 119, 6, 0.24);
    border-color: rgba(251, 191, 36, 0.55);
}

.evt-weather-badge.lifr {
    color: #ffe0e0;
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(248, 113, 113, 0.55);
}

.evt-weather-panel {
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 10px;
}

.evt-wind-panel {
    border-radius: 14px;
    border: 1px solid rgba(77, 190, 224, 0.26);
    background: rgba(6, 14, 22, 0.78);
    padding: 12px 10px 14px;
}

.evt-wind-title {
    text-align: center;
    color: #8fb9cb;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.evt-wind-rose {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(77, 190, 224, 0.32);
    background:
        radial-gradient(circle at center, rgba(6, 14, 22, 0.9) 0%, rgba(6, 14, 22, 0.7) 58%, rgba(77, 190, 224, 0.08) 100%);
}

.evt-wind-rose::before,
.evt-wind-rose::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 999px;
    border: 1px dashed rgba(77, 190, 224, 0.18);
}

.evt-wind-rose::after {
    inset: 32px;
    border-style: solid;
    border-color: rgba(77, 190, 224, 0.14);
}

.evt-wdir {
    position: absolute;
    color: #89b9cc;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.evt-wdir.n {
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
}

.evt-wdir.e {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.evt-wdir.s {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
}

.evt-wdir.w {
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.evt-wind-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 58px;
    background: linear-gradient(180deg, rgba(94, 255, 164, 0.98) 0%, rgba(94, 255, 164, 0.08) 100%);
    transform-origin: center bottom;
    transform: translate(-50%, -100%) rotate(var(--wind-rot, 0deg));
    box-shadow: 0 0 14px rgba(94, 255, 164, 0.45);
}

.evt-wind-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid rgba(94, 255, 164, 0.95);
}

.evt-wind-rose.vrb .evt-wind-arrow {
    display: none;
}

.evt-wind-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 999px;
    border: 1px solid rgba(77, 190, 224, 0.26);
    background: rgba(6, 14, 22, 0.9);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 2px;
}

.evt-wind-center strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    color: #e6f7ff;
    line-height: 1;
}

.evt-wind-center small {
    color: #91bfd2;
    font-size: 12px;
    letter-spacing: 1px;
}

.evt-weather-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.evt-w-chip {
    background: rgba(6, 14, 22, 0.78);
    border: 1px solid rgba(77, 190, 224, 0.22);
    border-radius: 14px;
    padding: 12px 14px;
}

.evt-w-chip label {
    display: block;
    color: #8fb9cb;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.evt-w-chip strong {
    color: #e6f7ff;
    font-size: 19px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .8px;
}

.evt-w-chip em {
    display: block;
    margin-top: 4px;
    color: #89b9cc;
    font-size: 12px;
    font-style: normal;
}

.evt-weather-metar {
    margin-top: 4px;
    padding: 12px 14px;
    background: rgba(2, 8, 16, 0.78);
    border: 1px dashed rgba(77, 190, 224, 0.38);
    border-radius: 12px;
}

.evt-weather-metar label {
    display: block;
    color: #8fb9cb;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.evt-weather-metar code {
    display: block;
    color: #d9f1ff;
    font-size: 13px;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    line-height: 1.45;
}

.evt-weather-metar-desc {
    margin-top: 7px;
    color: #a8d2e2;
    font-size: 12px;
    line-height: 1.4;
}

.evt-weather-metar-meta {
    margin-top: 8px;
    color: #9cc8d8;
    font-size: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.evt-w-live,
.evt-w-stale {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 8px;
    border: 1px solid;
    font-size: 11px;
}

.evt-w-live {
    color: #d4ffe9;
    border-color: rgba(74, 222, 128, 0.55);
    background: rgba(22, 163, 74, 0.2);
}

.evt-w-stale {
    color: #ffe4b5;
    border-color: rgba(251, 191, 36, 0.55);
    background: rgba(217, 119, 6, 0.2);
}

.evt-weather-forecast {
    margin-top: 4px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.evt-weather-nearby {
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(77, 190, 224, 0.24);
    background: rgba(4, 12, 22, 0.7);
}

.evt-weather-nearby>label {
    display: block;
    color: #8fb9cb;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.evt-nearby-legend {
    margin-bottom: 8px;
    color: #9bc7d8;
    font-size: 12px;
    line-height: 1.35;
}

.evt-nearby-item {
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed rgba(77, 190, 224, 0.22);
    background: rgba(2, 8, 16, 0.55);
}

.evt-nearby-item+.evt-nearby-item {
    margin-top: 8px;
}

.evt-nearby-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.evt-nearby-top strong {
    color: #e6f7ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
}

.evt-nearby-top span {
    color: #9bc7d8;
    font-size: 12px;
}

.evt-nearby-time {
    margin-top: 4px;
    color: #8fb9cb;
    font-size: 12px;
}

.evt-nearby-item code {
    display: block;
    margin-top: 6px;
    color: #d9f1ff;
    font-size: 12px;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    line-height: 1.4;
}

.evt-nearby-desc {
    margin-top: 6px;
    color: #a8d2e2;
    font-size: 12px;
    line-height: 1.4;
}

.evt-nearby-empty {
    color: #8fb9cb;
    font-size: 12px;
}

.evt-weather-day {
    background: rgba(6, 14, 22, 0.78);
    border: 1px solid rgba(77, 190, 224, 0.22);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.evt-weather-day .day-name {
    color: #9dc4d4;
    font-size: 12px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.evt-weather-day .day-wx-icon {
    margin-top: 6px;
    min-height: 62px;
    display: grid;
    place-items: center;
}

.evt-wx-svg {
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 6px 14px rgba(3, 8, 18, 0.42));
}

.evt-wx-sun circle {
    fill: #ffd65c;
    stroke: #ffeaa1;
    stroke-width: 2;
}

.evt-wx-sun g line {
    stroke: #ffd65c;
    stroke-width: 3;
    stroke-linecap: round;
}

.evt-wx-cloud path,
.evt-wx-rain .cloud,
.evt-wx-snow .cloud,
.evt-wx-storm .cloud {
    fill: #d3e9f5;
    stroke: #f8fcff;
    stroke-width: 2;
}

.evt-wx-suncloud .sun {
    fill: #ffd65c;
    stroke: #ffeaa1;
    stroke-width: 2;
}

.evt-wx-suncloud .cloud {
    fill: #d9ebf6;
    stroke: #f8fcff;
    stroke-width: 2;
}

.evt-wx-rain line {
    stroke: #63b2ff;
    stroke-width: 3;
    stroke-linecap: round;
}

.evt-wx-snow .snow circle {
    fill: #e9f7ff;
    stroke: #a8d5ff;
    stroke-width: 1.5;
}

.evt-wx-storm polygon {
    fill: #ffd46a;
    stroke: #ffe8b1;
    stroke-width: 1.5;
}

.evt-weather-day .day-temp {
    font-family: 'Rajdhani', sans-serif;
    color: #e6f7ff;
    font-size: 22px;
    margin-top: 6px;
}

.evt-weather-day .day-wx {
    font-size: 12px;
    color: #bdd9e8;
}

.evt-weather-disclaimer {
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(77, 190, 224, 0.2);
    background: rgba(3, 9, 16, 0.66);
    color: #8fb9cb;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.45;
}

@media (max-width: 860px) {
    .evt-weather-card::before {
        top: 104px;
    }

    .evt-weather-head {
        flex-direction: column;
    }

    .evt-weather-refresh {
        width: 100%;
    }

    .evt-weather-main {
        flex-direction: column;
    }

    .evt-weather-main-right {
        justify-items: start;
        text-align: left;
    }

    .evt-weather-panel {
        grid-template-columns: 1fr;
    }

    .evt-weather-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .evt-weather-forecast {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .evt-weather-content {
        max-width: calc(100vw - 8px);
        padding: 0 4px 12px;
    }

    .evt-weather-card {
        padding: 14px;
        border-radius: 14px;
    }

    .evt-weather-head h3 {
        font-size: 23px;
        letter-spacing: 1px;
    }

    .evt-weather-head p {
        font-size: 12px;
    }

    .evt-weather-main strong {
        font-size: 32px;
    }

    .evt-wind-rose {
        width: 150px;
        height: 150px;
    }

    .evt-weather-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
        right: 10px;
        top: 10px;
    }

    .evt-weather-kpis {
        grid-template-columns: 1fr;
    }

    .evt-atis-strip span {
        font-size: 10px;
        padding: 3px 8px;
    }

    .evt-weather-metar code,
    .evt-nearby-item code {
        font-size: 11px;
        overflow-wrap: anywhere;
    }
}

@keyframes evtPulseDot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.86);
    }
}

/* animations */
@keyframes evtFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes evtScrollDot {
    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes evtSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes evtFlip {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    45% {
        transform: rotateX(-90deg);
        opacity: 0.3;
    }

    55% {
        transform: rotateX(-90deg);
        opacity: 0.3;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes evtBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}
