/* License Gate Styling */
.license-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    overflow-y: auto;
}

.license-gate-content {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.license-logo-img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto 32px auto;
    filter: brightness(1.05) contrast(1.05);
}

.license-form {
    background: #141414;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    margin-bottom: 24px;
}

.license-form h2 {
    color: #fafafa;
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
}

.license-help {
    color: #a3a3a3;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: center;
}

.license-help a {
    color: #f97316;
    text-decoration: none;
}

.license-help a:hover {
    text-decoration: underline;
}

.license-input {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #262626;
    border-radius: 6px;
    padding: 14px 16px;
    color: #e5e5e5;
    font-size: 15px;
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.license-input:focus {
    outline: none;
    border-color: #f97316;
    background: #0f0f0f;
}

.license-input::placeholder {
    color: #4b5563;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.license-submit-btn {
    width: 100%;
    background: #f97316;
    border: none;
    color: white;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.license-submit-btn:hover:not(:disabled) {
    background: #ea580c;
    transform: translateY(-1px);
}

.license-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.license-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.license-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    display: none;
}

.license-status.checking {
    display: block;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.license-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.license-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.license-footer {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 480px) {
    .license-logo-img {
        max-width: 280px;
        margin-bottom: 24px;
    }

    .license-form {
        padding: 24px 20px;
    }

    .license-input {
        font-size: 14px;
        padding: 12px 14px;
    }
}
