.cmf-gateway-container-e225380b {
    --cmf-primary: #1458A7;
    --cmf-secondary: #1FA9A6;
    --cmf-bg: #FFFFFF;
    --cmf-text: #0F172A;
    --cmf-muted: #5B6472;
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--cmf-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--cmf-text);
}

.cmf-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at 15% 50%, rgba(20, 88, 167, 0.04), transparent 30%),
                radial-gradient(circle at 85% 30%, rgba(31, 169, 166, 0.04), transparent 30%);
}

.cmf-step {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.cmf-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cmf-welcome-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cmf-primary);
    text-align: center;
    letter-spacing: 1px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cmf-glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 88, 167, 0.08);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(20, 88, 167, 0.05);
}

.cmf-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--cmf-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.cmf-subtitle {
    color: var(--cmf-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cmf-lang-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cmf-btn {
    background: white;
    border: 1px solid rgba(20, 88, 167, 0.15);
    padding: 1rem 3.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--cmf-text);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(20, 88, 167, 0.03);
}

.cmf-btn:hover, .cmf-btn:focus-visible {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(20, 88, 167, 0.1);
    border-color: var(--cmf-secondary);
    color: var(--cmf-primary);
    outline: none;
}

.cmf-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--cmf-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    transition: all 0.4s ease;
}

.cmf-btn-continue {
    background: linear-gradient(135deg, var(--cmf-primary), var(--cmf-secondary));
    color: white;
    border: none;
}

.cmf-btn-continue:hover, .cmf-btn-continue:focus-visible {
    color: white;
    box-shadow: 0 10px 25px rgba(31, 169, 166, 0.25);
}

.cmf-dest-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cmf-card {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    flex: 1;
    cursor: pointer;
    border: 1px solid rgba(20, 88, 167, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.cmf-card h3 {
    font-size: 1.75rem;
    color: var(--cmf-primary);
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 400;
}

.cmf-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(20,88,167,0.03), rgba(31,169,166,0.06));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.cmf-card:hover, .cmf-card:focus-visible {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(20, 88, 167, 0.1);
    border-color: rgba(31, 169, 166, 0.3);
    outline: none;
}

.cmf-card:hover::before, .cmf-card:focus-visible::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .cmf-dest-options {
        flex-direction: column;
    }
    .cmf-card {
        padding: 3rem 2rem;
    }
    .cmf-glass-panel {
        padding: 2.5rem 1.5rem;
    }
}
