.vc-logo {
    width: 300px;
    height: auto;
}

.vc-cta-button {
    background-color: var(--volt-yellow);
    color: var(--midnight-navy);
    font-family: var(--font-title);
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 211, 0, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vc-cta-button:hover {
    transform: scale(1.05);
}
.vc-button-google {
    background-color: #fff;
    color: #444;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.8rem;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    border: 2px solid var(--volt-yellow);
}

.vc-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #ccc;
}

.vc-form-group {
    text-align:center;
    margin-bottom: 1.2rem;
}

.vc-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: var(--neon-cyan);
}

.vc-input {
    /* width: 100%; */
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}

.vc-button-secondary {
    margin-top: 0.5rem;
    background-color: var(--steel-grey);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    cursor: pointer;
}

.vc-button-primary {
    margin-top: 0.5rem;
    background-color: var(--volt-yellow);
    color: var(--midnight-navy);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    cursor: pointer;
}

.vc-error-msg {
    color: var(--race-red);
    background: #330000;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}
.vc-status {
    font-size: 0.85rem;
    margin-top: 0.25rem;
    color: var(--lime-green);
}

.vc-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.vc-modal-content {
    background: var(--steel-grey);
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 10px var(--neon-cyan);
    text-align: center;
}
.vc-card {
    background-color: var(--steel-grey);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.vc-card h3 {
    margin-top: 0;
    color: var(--neon-cyan);
}

.vc-card p, .vc-card ul {
    color: white;
    font-size: 1rem;
}
.vc-button-mini {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    border: none;
    background-color: var(--steel-grey);
    color: white;
    cursor: pointer;
}

.vc-button-mini:hover {
    background-color: var(--race-red);
}

.vc-progress-container {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    height: 20px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.vc-progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.vc-progress-valid {
    background-color: var(--lime-green);
}

.vc-progress-invalid {
    background-color: var(--race-red);
}
.vc-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.vc-tab-buttons button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--neon-cyan);
    background: transparent;
    color: white;
    cursor: pointer;
}
.vc-tab-buttons button.active {
    background: var(--neon-cyan);
    color: var(--midnight-navy);
    font-weight: bold;
}
.vc-leaderboard-section {
    margin-bottom: 3rem;
}
.vc-leaderboard-section h2 {
    color: var(--volt-yellow);
    text-align: center;
}