.wj-oig-start {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.wj-oig-start h2 {
    text-align: center;
    color: #2F5496;
    margin-bottom: 30px;
}

.wj-step {
    display: none;
}
.wj-step.wj-active {
    display: block;
    animation: wjFadeIn 0.3s ease-in;
}

@keyframes wjFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wj-tiles {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wj-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 160px;
    border: 2px solid #D6E4F0;
    border-radius: 12px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.wj-tile:hover {
    border-color: #2F5496;
    background: #F0F5FA;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(47, 84, 150, 0.15);
}

.wj-tile:active {
    transform: translateY(0);
}

.wj-tile-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.wj-tile-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.wj-back-link {
    text-align: center;
    margin-top: 20px;
}

.wj-back-link a {
    color: #666;
    text-decoration: none;
}
.wj-back-link a:hover {
    color: #2F5496;
}

.wj-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 600px) {
    .wj-tiles {
        flex-direction: column;
        align-items: center;
    }
    .wj-tile {
        width: 100%;
        max-width: 280px;
        height: 120px;
    }
    .wj-tile-icon {
        font-size: 36px;
    }
}
