.geo-check-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.geo-check-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.geo-check-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    text-align: center;
}

.geo-check-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 30px 0;
}

.geo-check-form {
    margin-bottom: 30px;
}

.geo-check-input-group {
    display: flex;
    gap: 12px;
}

.geo-check-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease;
}

.geo-check-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.geo-check-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.geo-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.geo-check-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.geo-check-score-value {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.geo-check-score-max {
    font-size: 14px;
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-top: 4px;
}

.geo-check-score-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.geo-check-category-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.geo-check-category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.geo-check-category-score {
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    background: #eff6ff;
    padding: 8px 12px;
    border-radius: 6px;
}

.geo-check-ai-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.geo-check-ai-file:last-child {
    border-bottom: none;
}

.geo-check-ai-file-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.geo-check-ai-file-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.geo-check-ai-file-status.exists {
    background: #d1fae5;
    color: #065f46;
}

.geo-check-ai-file-status.missing {
    background: #fee2e2;
    color: #991b1b;
}

.geo-check-ucp-status {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.geo-check-ucp-status.exists {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.geo-check-ucp-status.missing {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.geo-check-loading {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.geo-check-loading p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.geo-check-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    color: #991b1b;
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .geo-check-wrapper {
        padding: 24px;
    }

    .geo-check-input-group {
        flex-direction: column;
    }

    .geo-check-btn {
        width: 100%;
    }
}
