﻿.component-welcome {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.component-welcome .card {
    background-color: #222;
    color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    font-family: 'Fira Code', monospace;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.component-welcome h2 {
    color: #00ffcc;
    margin-bottom: 15px;
}

.component-welcome .lang-buttons button {
    margin: 5px;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    background: #00aaff;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.component-welcome .lang-buttons button:hover {
    background: #00ffcc;
    color: #222;
}

.component-welcome .info-text {
    font-size: 0.85rem;
    margin: 15px 0;
    color: #ccc;
}

.component-welcome .accept-checkbox {
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: left;
}

.component-welcome .continue-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #00ffcc;
    color: #222;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.component-welcome .continue-btn:disabled {
    background: #555;
    cursor: not-allowed;
}